scaffolding for authorization.

This commit is contained in:
ivancheahhh
2024-01-04 13:18:58 -07:00
parent 58873372ec
commit 98f14c1cc0
17 changed files with 265 additions and 26 deletions

13
Models/UserConfig.cs Normal file
View File

@@ -0,0 +1,13 @@
namespace CarCareTracker.Models
{
public class UserConfig
{
public bool UseDarkMode { get; set; }
public bool EnableCsvImports { get; set; }
public bool UseMPG { get; set; }
public bool UseDescending { get; set; }
public bool EnableAuth { get; set; }
public string UserNameHash { get; set; }
public string UserPasswordHash { get; set;}
}
}