namespace DocuMed.Domain.Dtos.SmallDtos; public class StudentSDto : BaseDto { public string StudentId { get; set; } = string.Empty; public Guid UniversityId { get; set; } public string UniversityName { get; set; } = string.Empty; public Guid SectionId { get; set; } public string SectionName { get; set; } = string.Empty; public Guid UserId { get; set; } public string PhoneNumber { get; set; } = string.Empty; public string FirstName { get; set; } = string.Empty; public string LastName { get; set; } = string.Empty; public string NationalId { get; set; } = string.Empty; }