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

7 lines
194 B
C#
Raw Normal View History

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