mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-11 14:14:22 +00:00
SteamParentalPIN -> SteamParentalCode + fixes for @Aareksio
This commit is contained in:
@@ -183,6 +183,7 @@ namespace ArchiSteamFarm {
|
||||
}
|
||||
}
|
||||
|
||||
internal bool IsWebProxyPasswordSet { get; private set; }
|
||||
internal bool ShouldSerializeEverything { private get; set; } = true;
|
||||
|
||||
[JsonProperty(Required = Required.DisallowNull)]
|
||||
@@ -192,9 +193,16 @@ namespace ArchiSteamFarm {
|
||||
internal ProtocolTypes SteamProtocols { get; private set; } = DefaultSteamProtocols;
|
||||
|
||||
[JsonProperty]
|
||||
internal string WebProxyPassword { get; set; } = DefaultWebProxyPassword;
|
||||
internal string WebProxyPassword {
|
||||
get => _WebProxyPassword;
|
||||
set {
|
||||
IsWebProxyPasswordSet = true;
|
||||
_WebProxyPassword = value;
|
||||
}
|
||||
}
|
||||
|
||||
private WebProxy _WebProxy;
|
||||
private string _WebProxyPassword = DefaultWebProxyPassword;
|
||||
private bool ShouldSerializeSensitiveDetails = true;
|
||||
|
||||
[JsonProperty(PropertyName = SharedInfo.UlongCompatibilityStringPrefix + nameof(SteamOwnerID), Required = Required.DisallowNull)]
|
||||
|
||||
Reference in New Issue
Block a user