Remove local account related stuff

This commit is contained in:
2025-07-30 17:25:48 -07:00
parent 161ab64a20
commit 7f3dbcaac6
3 changed files with 0 additions and 185 deletions
-6
View File
@@ -3,13 +3,7 @@ namespace BoredCareers.Entities {
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 string DataServer { get; set; } = "";
}
}