Move Statistics to global config

This commit is contained in:
JustArchi
2016-03-09 05:02:07 +01:00
parent 1403ffe190
commit c632c025cb
5 changed files with 6 additions and 8 deletions

View File

@@ -62,6 +62,9 @@ namespace ArchiSteamFarm {
[JsonProperty(Required = Required.DisallowNull)]
internal ushort WCFPort { get; private set; } = 1242;
[JsonProperty(Required = Required.DisallowNull)]
internal bool Statistics { get; private set; } = true;
[JsonProperty(Required = Required.DisallowNull)]
internal HashSet<uint> Blacklist { get; private set; } = new HashSet<uint>(GlobalBlacklist);