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

8 lines
255 B
C#
Raw Normal View History

2023-12-16 20:25:12 +03:30
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;
}