#nullable enable using Bit.Core.Entities; using Bit.Core.Utilities; namespace Bit.Core.SecretsManager.Entities; public class Secret : ITableObject { public Guid Id { get; set; } public Guid OrganizationId { get; set; } public string? Key { get; set; } public string? Value { get; set; } public string? Note { get; set; } public DateTime CreationDate { get; set; } = DateTime.UtcNow; public DateTime RevisionDate { get; set; } = DateTime.UtcNow; public DateTime? DeletedDate { get; set; } public ICollection? Projects { get; set; } public void SetNewId() { if (Id == default(Guid)) { Id = CoreHelpers.GenerateComb(); } } }