namespace DocuMed.Domain.Dtos.RequestDtos; public class SignUpRequestDto { public string FirstName { get; set; } = string.Empty; public string LastName { get; set; } = string.Empty; public Guid UniversityId { get; set; } public Guid SectionId { get; set; } public Guid CityId { get; set; } }