updated general settings model

This commit is contained in:
Lavius Motileng 2020-03-30 05:38:03 -07:00
parent f1951d0d5f
commit 8c465d22e0

View File

@ -19,6 +19,17 @@ namespace Microsoft.PowerToys.Settings.UI.ViewModels
public string system_theme { get; set; }
public string powertoys_version { get; set; }
public GeneralSettings()
{
this.packaged = false;
this.startup = false;
this.is_admin = false;
this.is_elevated = false;
this.theme = "system";
this.system_theme = "light";
this.powertoys_version = "v0.15.3";
}
public override string ToString()
{
return JsonSerializer.Serialize(this);