Api/NetinaShop.Domain/Dtos/RequestDtos/LoginRequestDto.cs

8 lines
255 B
C#

namespace NetinaShop.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;
}