Tomasi - Developing bafe2cde5a v 0.7.0
2025-02-06 10:44:55 +01:00

18 lines
407 B
C#

namespace Database.Entities;
public class ApiKey : BaseEntity
{
public Alliance Alliance { get; set; } = null!;
public Guid AllianceId { get; set; }
public required string EncryptedKey { get; set; }
public DateTime CreatedOn { get; set; }
public required string CreatedBy { get; set; }
public DateTime? ModifiedOn { get; set; }
public string? ModifiedBy { get; set; }
}