10 lines
252 B
C#
10 lines
252 B
C#
namespace QtCNETAPI.Dtos.User
|
|
{
|
|
public class UserLoginDto
|
|
{
|
|
public string Email { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
public bool RememberMe { get; set; } = false;
|
|
}
|
|
}
|