Api-PWA/DocuMed.Domain/Dtos/RequestDtos/SignUpRequestDto.cs

9 lines
275 B
C#
Raw Normal View History

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; }
public Guid CityId { get; set; }
}