7 lines
200 B
C#
7 lines
200 B
C#
|
|
namespace HamyanEdalat.Domain.Dtos.RequestDtos;
|
|||
|
|
|
|||
|
|
public class SignUpRequestDto
|
|||
|
|
{
|
|||
|
|
public string FirstName { get; set; } = string.Empty;
|
|||
|
|
public string LastName { get; set; } = string.Empty;
|
|||
|
|
}
|