namespace DocuMed.Domain.Dtos.SmallDtos; public class ApplicationUserSDto : BaseDto { 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; public string StudentId { get; set; } = string.Empty; public DateTime BirthDate { get; set; } public Gender Gender { get; set; } public SignUpStatus SignUpStatus { get; set; } public Guid UniversityId { get; set; } public Guid SectionId { get; set; } public string SectionName { get; set; } = string.Empty; public string FullName => FirstName + " " + LastName; }