9 lines
275 B
C#
9 lines
275 B
C#
|
|
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; }
|
|||
|
|
}
|