This commit is contained in:
JustArchi
2018-08-19 22:51:28 +02:00
parent c33c1adf06
commit b96cf4aecf

View File

@@ -138,6 +138,9 @@ namespace ArchiSteamFarm {
[JsonProperty(Required = Required.DisallowNull)]
internal readonly bool UseLoginKeys = DefaultUseLoginKeys;
[JsonProperty(PropertyName = nameof(SteamPassword))]
internal string EncryptedSteamPassword { get; private set; } = DefaultEncryptedSteamPassword;
internal bool ShouldSerializeEverything { private get; set; } = true;
[JsonProperty]
@@ -167,9 +170,6 @@ namespace ArchiSteamFarm {
}
}
[JsonProperty(PropertyName = nameof(SteamPassword))]
private string EncryptedSteamPassword = DefaultEncryptedSteamPassword;
private bool ShouldSerializeSensitiveDetails = true;
[JsonProperty(PropertyName = SharedInfo.UlongCompatibilityStringPrefix + nameof(SteamMasterClanID), Required = Required.DisallowNull)]