8 lines
251 B
C#
8 lines
251 B
C#
|
|
namespace HiVakil.Domain.Dtos.RequestDto;
|
|||
|
|
|
|||
|
|
public class LoginRequestDto
|
|||
|
|
{
|
|||
|
|
public string UserName { get; set; } = string.Empty;
|
|||
|
|
public string Password { get; set; } = string.Empty;
|
|||
|
|
public string VerifyCode { get; set; } = string.Empty;
|
|||
|
|
}
|