7 lines
194 B
C#
7 lines
194 B
C#
|
|
namespace HiVakil.Domain.Dtos.RequestDto;
|
|||
|
|
|
|||
|
|
public class SignUpRequestDto
|
|||
|
|
{
|
|||
|
|
public string FirstName { get; set; } = string.Empty;
|
|||
|
|
public string LastName { get; set; } = string.Empty;
|
|||
|
|
}
|