Files
auth-mistox/src/Server/Entities/Account.cs
T
derek f1222b4ec6
Docker Build and Release Upload / build (push) Successful in 1m24s
Update key store to validate account and site
2025-09-09 21:47:34 -07:00

19 lines
870 B
C#

namespace Auth.Entities {
public class Account {
public int ID { get; set; } // PK
public string UserName { get; set; } = "";
public string Email { get; set; } = "";
public bool EmailVerified { get; set; } = false;
public string PasswordHash { get; set; } = "";
public bool FailedPasswordLock { get; set; } = false;
public int PasswordAttempts { get; set; } = 5;
public int CurrentPasswordAttempts { get; set; } = 0;
public string Role { get; set; } = "Generic";
public string EmailToken { get; set; } = "";
public DateTime EmailTokenCreated { get; set; }
public string PasswordToken { get; set; } = "";
public DateTime PasswordTokenCreated { get; set; }
public string DataServer { get; set; } = "";
public string Site { get; set; } = "";
}
}