mirror of
https://github.com/bitwarden/server
synced 2025-12-15 15:53:59 +00:00
26 lines
795 B
C#
26 lines
795 B
C#
using System;
|
|
using Bit.Core.Utilities;
|
|
using Bit.Core.Enums;
|
|
|
|
namespace Bit.Core.Models.Table
|
|
{
|
|
public class OrganizationUser : IDataObject<Guid>
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid OrganizationId { get; set; }
|
|
public Guid? UserId { get; set; }
|
|
public string Email { get; set; }
|
|
public string Key { get; set; }
|
|
public OrganizationUserStatusType Status { get; set; }
|
|
public OrganizationUserType Type { get; set; }
|
|
public bool AccessAll { get; set; }
|
|
public DateTime CreationDate { get; internal set; } = DateTime.UtcNow;
|
|
public DateTime RevisionDate { get; internal set; } = DateTime.UtcNow;
|
|
|
|
public void SetNewId()
|
|
{
|
|
Id = CoreHelpers.GenerateComb();
|
|
}
|
|
}
|
|
}
|