lubelog/Models/UserConfig.cs
DESKTOP-GENO133\IvanPlex 25db16c47f added kwh setting
2024-01-06 08:53:45 -07:00

14 lines
451 B
C#

namespace CarCareTracker.Models
{
public class UserConfig
{
public bool UseDarkMode { get; set; }
public bool UsekWh { 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;}
}
}