lubelog/Models/UserConfig.cs
DESKTOP-T0O5CDB\DESK-555BD 26012bf27a added support for UK MPG
2024-01-08 15:11:23 -07:00

15 lines
493 B
C#

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 bool HideZero { get; set; }
public bool UseUKMPG {get;set;}
public string UserNameHash { get; set; }
public string UserPasswordHash { get; set;}
}
}