2023-09-20 11:54:12 +03:30
|
|
|
|
using Brizco.Domain.Entities.User;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Brizco.Domain.Dtos.SmallDtos;
|
|
|
|
|
|
|
|
|
|
|
|
public class ApplicationUserSDto : BaseDto<ApplicationUserSDto,ApplicationUser>
|
|
|
|
|
|
{
|
|
|
|
|
|
public string PhoneNumber { get; set; } = string.Empty;
|
|
|
|
|
|
public string FirstName { get; set; } = string.Empty;
|
|
|
|
|
|
public string LastName { get; set; } = string.Empty;
|
|
|
|
|
|
public DateTime BirthDate { get; set; }
|
|
|
|
|
|
public Gender Gender { get; set; }
|
|
|
|
|
|
public SignUpStatus SignUpStatus { get; set; }
|
|
|
|
|
|
public string SelectedRoleName { get; set; } = string.Empty;
|
|
|
|
|
|
public string SelectedComplexName { get; set; } = string.Empty;
|
2023-10-13 16:25:34 +03:30
|
|
|
|
public string InternationalId { get; set; } = string.Empty;
|
2023-09-20 11:54:12 +03:30
|
|
|
|
}
|