mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
13 lines
410 B
C#
13 lines
410 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 string UserNameHash { get; set; }
|
|
public string UserPasswordHash { get; set;}
|
|
}
|
|
} |