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