blob: bed49c49209b35db986bf101fd2b458fc112768e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
namespace IOL.WebApi.Template.Data.Dtos
{
public class LoginRequestDto
{
public string Username { get; set; }
public string Password { get; set; }
public bool Persist { get; set; }
}
}
|