Api/Brizco.Domain/Entities/Users/ApplicationUser.cs

18 lines
636 B
C#
Raw Normal View History

2024-07-06 21:20:10 +03:30
namespace Brizco.Domain.Entities.Users;
2023-09-15 12:37:02 +03:30
2023-10-13 16:25:34 +03:30
[AdaptTwoWays("[name]SDto", IgnoreAttributes = new[] { typeof(AdaptIgnoreAttribute) }, MapType = MapType.Map | MapType.MapToTarget | MapType.Projection)]
[GenerateMapper]
2023-09-15 12:37:02 +03:30
public class ApplicationUser : IdentityUser<Guid>
{
public string FirstName { get; set; } = string.Empty;
public string LastName { get; set; } = string.Empty;
2023-10-18 17:19:56 +03:30
public string NationalId { get; set; } = string.Empty;
public Guid SelectedComplexUserRoleId { get; set; }
2023-09-15 12:37:02 +03:30
public DateTime BirthDate { get; set; }
public Gender Gender { get; set; }
public SignUpStatus SignUpStatus { get; set; }
2023-09-15 12:37:02 +03:30
}