namespace cuqmbr.TravelGuide.Domain.Entities; public sealed class Account : EntityBase { public string Username { get; set; } public string Email { get; set; } public string PasswordHash { get; set; } public string PasswordSalt { get; set; } public ICollection AccountRoles { get; set; } public ICollection RefreshTokens { get; set; } public Employee? Employee { get; set; } public Company? Company { get; set; } public ICollection TicketGroups { get; set; } }