Add AutoRestart property

This commit is contained in:
JustArchi
2016-04-18 18:38:48 +02:00
parent 610954ba73
commit 565acca9fb
4 changed files with 17 additions and 3 deletions

View File

@@ -54,6 +54,9 @@ namespace ConfigGenerator {
[JsonProperty(Required = Required.DisallowNull)]
public bool AutoUpdates { get; set; } = true;
[JsonProperty(Required = Required.DisallowNull)]
public bool AutoRestart { get; set; } = true;
[JsonProperty(Required = Required.DisallowNull)]
public EUpdateChannel UpdateChannel { get; set; } = EUpdateChannel.Stable;