mirror of
https://github.com/JustArchiNET/ArchiSteamFarm
synced 2024-11-10 15:14:41 +00:00
Correct volvo logic
This commit is contained in:
parent
9cda8f4e7e
commit
e073caab10
1 changed files with 2 additions and 2 deletions
|
@ -485,7 +485,7 @@ namespace ArchiSteamFarm.Json {
|
|||
|
||||
[SuppressMessage("ReSharper", "ClassCannotBeInstantiated")]
|
||||
internal sealed class TradeOfferAcceptResponse {
|
||||
[JsonProperty(PropertyName = "needs_mobile_confirmation", Required = Required.Always)]
|
||||
[JsonProperty(PropertyName = "needs_mobile_confirmation", Required = Required.DisallowNull)]
|
||||
internal readonly bool RequiresMobileConfirmation;
|
||||
|
||||
// Deserialized from JSON
|
||||
|
@ -507,7 +507,7 @@ namespace ArchiSteamFarm.Json {
|
|||
|
||||
[SuppressMessage("ReSharper", "ClassCannotBeInstantiated")]
|
||||
internal sealed class TradeOfferSendResponse {
|
||||
[JsonProperty(PropertyName = "needs_mobile_confirmation", Required = Required.Always)]
|
||||
[JsonProperty(PropertyName = "needs_mobile_confirmation", Required = Required.DisallowNull)]
|
||||
internal readonly bool RequiresMobileConfirmation;
|
||||
|
||||
internal ulong TradeOfferID { get; private set; }
|
||||
|
|
Loading…
Reference in a new issue