api/HiVakil.Domain/Dtos/RequestDto/SignUpRequestDto.cs

7 lines
194 B
C#
Raw Normal View History

2024-02-26 12:37:42 +03:30
namespace HiVakil.Domain.Dtos.RequestDto;
public class SignUpRequestDto
{
public string FirstName { get; set; } = string.Empty;
public string LastName { get; set; } = string.Empty;
}