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

7 lines
198 B
C#
Raw Normal View History

2023-12-16 20:25:12 +03:30
namespace NetinaShop.Domain.Dtos.RequestDtos;
public class SignUpRequestDto
{
public string FirstName { get; set; } = string.Empty;
public string LastName { get; set; } = string.Empty;
}