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

7 lines
198 B
C#

namespace NetinaShop.Domain.Dtos.RequestDtos;
public class SignUpRequestDto
{
public string FirstName { get; set; } = string.Empty;
public string LastName { get; set; } = string.Empty;
}