Api-PWA/DocuMed.Domain/Dtos/SmallDtos/ApplicationUserSDto.cs

22 lines
860 B
C#
Raw Normal View History

2023-10-19 21:28:09 +03:30
namespace DocuMed.Domain.Dtos.SmallDtos;
public class ApplicationUserSDto : BaseDto<ApplicationUserSDto,ApplicationUser>
{
public string FirstName { get; set; } = string.Empty;
public string LastName { get; set; } = string.Empty;
public string UserName { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
public string PhoneNumber { get; set; } = string.Empty;
public bool PhoneNumberConfirmed { get; set; }
public string NationalId { get; set; } = string.Empty;
2023-10-22 15:51:11 +03:30
public string StudentId { get; set; } = string.Empty;
2023-10-19 21:28:09 +03:30
public DateTime BirthDate { get; set; }
public Gender Gender { get; set; }
public SignUpStatus SignUpStatus { get; set; }
public Guid UniversityId { get; set; }
2023-10-22 15:51:11 +03:30
public Guid SectionId { get; set; }
public string FullName => FirstName + " " + LastName;
2023-10-19 21:28:09 +03:30
}