Skip to content

Commit

Permalink
Fix trading bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
JustArchi committed Feb 24, 2016
1 parent c6cc4e2 commit b6e96d8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ArchiSteamFarm/SteamItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,25 +28,25 @@ namespace ArchiSteamFarm {
internal sealed class SteamItem {
// REF: https://developer.valvesoftware.com/wiki/Steam_Web_API/IEconService#CEcon_Asset

[JsonProperty(Required = Required.Always)]
[JsonProperty(Required = Required.DisallowNull)]
internal string appid { get; set; }

[JsonProperty(Required = Required.Always)]
[JsonProperty(Required = Required.DisallowNull)]
internal string contextid { get; set; }

[JsonProperty(Required = Required.Always)]
[JsonProperty(Required = Required.DisallowNull)]
internal string assetid { get; set; }

[JsonProperty]
[JsonProperty(Required = Required.DisallowNull)]
internal string id {
get { return assetid; }
set { assetid = value; }
}

[JsonProperty(Required = Required.Always)]
[JsonProperty(Required = Required.AllowNull)]
internal string classid { get; set; }

[JsonProperty(Required = Required.Always)]
[JsonProperty(Required = Required.AllowNull)]
internal string instanceid { get; set; }

[JsonProperty(Required = Required.Always)]
Expand Down

1 comment on commit b6e96d8

@reeporter
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks its working again

Please sign in to comment.