first commit
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user