using System; using Bit.Core.Utilities; using Bit.Core.Enums; namespace Bit.Core.Models.Table { public class OrganizationUser : IDataObject { 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 DateTime CreationDate { get; internal set; } = DateTime.UtcNow; public DateTime RevisionDate { get; internal set; } = DateTime.UtcNow; public void SetNewId() { Id = CoreHelpers.GenerateComb(); } } }