18 lines
504 B
C#
18 lines
504 B
C#
namespace OpenWarehouse.auth.lib.Model.Account;
|
|
|
|
public class LoginModel
|
|
{
|
|
public LoginModel()
|
|
{
|
|
IsLogged = false;
|
|
}
|
|
|
|
public string? Login { set; get; }
|
|
public string? Email { get; set; }
|
|
public string? Token { set; get; }
|
|
public long Exp { get; set; } = 0;
|
|
public string? Message { set; get; }
|
|
public string? AccountProblem { set; get; }
|
|
public bool IsLogged { get; set; }
|
|
public bool RequiresTwoFactor { get; set; } = false;
|
|
} |