2023-10-19 21:28:09 +03:30
|
|
|
|
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; }
|
2024-12-27 09:53:55 +03:30
|
|
|
|
public Guid SectionId { get; set; }
|
2023-10-19 21:28:09 +03:30
|
|
|
|
public Guid CityId { get; set; }
|
|
|
|
|
|
}
|