This commit is contained in:
JustArchi
2020-06-07 21:06:41 +02:00
parent 70cf69d9db
commit e83c468fba
2 changed files with 3 additions and 3 deletions

View File

@@ -84,10 +84,10 @@ namespace ArchiSteamFarm {
} }
} }
[JsonProperty(PropertyName = "_LoginKey")] [JsonProperty(PropertyName = "_" + nameof(LoginKey))]
private string BackingLoginKey; private string BackingLoginKey;
[JsonProperty(PropertyName = "_MobileAuthenticator")] [JsonProperty(PropertyName = "_" + nameof(MobileAuthenticator))]
private MobileAuthenticator BackingMobileAuthenticator; private MobileAuthenticator BackingMobileAuthenticator;
private BotDatabase([NotNull] string filePath) { private BotDatabase([NotNull] string filePath) {

View File

@@ -63,7 +63,7 @@ namespace ArchiSteamFarm {
} }
} }
[JsonProperty(PropertyName = "_CellID", Required = Required.DisallowNull)] [JsonProperty(PropertyName = "_" + nameof(CellID), Required = Required.DisallowNull)]
private uint BackingCellID; private uint BackingCellID;
private GlobalDatabase([NotNull] string filePath) : this() { private GlobalDatabase([NotNull] string filePath) : this() {