Api/Brizco.Domain/Dtos/SmallDtos/ApplicationUserSDto.cs

19 lines
861 B
C#
Raw Normal View History

2024-08-11 19:20:09 +03:30
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;
public Guid SelectedRoleId { get; set; }
2023-10-18 17:19:56 +03:30
public string NationalId { get; set; } = string.Empty;
2023-10-24 15:36:09 +03:30
public List<Guid> RoleIds { get; set; } = new();
2023-11-14 16:21:49 +03:30
public Guid PositionId { get; set; }
2023-10-24 15:36:09 +03:30
public long BirthDateTimeStamp => DateTimeExtensions.DateTimeToUnixTimeStamp(BirthDate);
}