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

15 lines
582 B
C#
Raw Normal View History

2023-09-15 12:37:02 +03:30
namespace Brizco.Domain.Entities.User;
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-13 16:25:34 +03:30
public string InternationalId { get; set; } = string.Empty;
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
}