Api/Brizco.Domain/Dtos/RequestDtos/SignUpRequestDto.cs

10 lines
384 B
C#

namespace Brizco.Domain.Dtos.RequestDtos;
public class SignUpRequestDto
{
public string FirstName { get; set; } = string.Empty;
public string LastName { get; set; } = string.Empty;
public string ComplexName { get; set; } = string.Empty;
public string ComplexAddress { get; set; } = string.Empty;
public string SupportPhoneNumber { get; set; } = string.Empty;
}