Skip to content

Commit 4e164e7

Browse files
author
Justin
committed
Fixed data type on match sequence number.
Roll version.
1 parent eb4dd3c commit 4e164e7

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/SteamWebAPI2/Models/DOTA2/MatchDetailResultContainer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ internal class MatchDetailResult
105105
public ulong MatchId { get; set; }
106106

107107
[JsonProperty(PropertyName = "match_seq_num")]
108-
public uint MatchSequenceNumber { get; set; }
108+
public ulong MatchSequenceNumber { get; set; }
109109

110110
[JsonProperty(PropertyName = "tower_status_radiant")]
111111
public uint TowerStatusRadiant { get; set; }

src/SteamWebAPI2/Models/DOTA2/MatchHistoryResultContainer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ internal class MatchHistoryMatch
1111
public ulong MatchId { get; set; }
1212

1313
[JsonProperty(PropertyName = "match_seq_num")]
14-
public uint MatchSequenceNumber { get; set; }
14+
public ulong MatchSequenceNumber { get; set; }
1515

1616
[JsonProperty(PropertyName = "start_time")]
1717
[JsonConverter(typeof(UnixTimeJsonConverter))]

src/SteamWebAPI2/SteamWebAPI2.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Description>This is a .NET library that makes it easy to use the Steam Web API. It conveniently wraps around all of the JSON data and ugly API details with clean methods, structures and classes.</Description>
5-
<VersionPrefix>4.0.9</VersionPrefix>
5+
<VersionPrefix>4.0.10</VersionPrefix>
66
<Authors>Justin Skiles</Authors>
77
<AssemblyName>SteamWebAPI2</AssemblyName>
88
<PackageId>SteamWebAPI2</PackageId>
@@ -14,7 +14,7 @@
1414
<ItemGroup>
1515
<PackageReference Include="automapper" Version="6.1.1" />
1616
<PackageReference Include="newtonsoft.json" Version="10.0.3" />
17-
<PackageReference Include="Steam.Models" Version="3.0.8" />
17+
<PackageReference Include="Steam.Models" Version="3.0.10" />
1818
</ItemGroup>
1919

2020
</Project>

0 commit comments

Comments
 (0)