Allow changing default language

This commit is contained in:
JustArchi
2017-01-08 05:32:59 +01:00
parent c636a2a5d5
commit 63bff8432a
6 changed files with 34 additions and 2 deletions

View File

@@ -56,6 +56,9 @@ namespace ConfigGenerator {
[JsonProperty(ObjectCreationHandling = ObjectCreationHandling.Replace, Required = Required.DisallowNull)]
public List<uint> Blacklist { get; set; } = new List<uint>(GlobalBlacklist);
[JsonProperty]
public string CurrentCulture { get; set; } = null;
[Category("\tDebugging")]
[JsonProperty(Required = Required.DisallowNull)]
public bool Debug { get; set; } = false;