Skip to content

Commit cf15668

Browse files
author
babelshift
committed
Match Id is now a long.
1 parent 8c729f1 commit cf15668

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

SteamWebAPI2/Models/DOTA2/LiveLeagueGameResultContainer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public class LiveLeagueGame
9494
public long LobbyId { get; set; }
9595

9696
[JsonProperty(PropertyName = "match_id")]
97-
public int MatchId { get; set; }
97+
public long MatchId { get; set; }
9898

9999
public int Spectators { get; set; }
100100

SteamWebAPI2/Models/DOTA2/MatchDetailResultContainer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public class MatchDetailResult
102102
public int StartTime { get; set; }
103103

104104
[JsonProperty(PropertyName = "match_id")]
105-
public int MatchId { get; set; }
105+
public long MatchId { get; set; }
106106

107107
[JsonProperty(PropertyName = "match_seq_num")]
108108
public int MatchSequenceNumber { get; set; }

SteamWebAPI2/Models/DOTA2/MatchHistoryResultContainer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace SteamWebAPI2.Models.DOTA2
88
public class MatchHistoryMatch
99
{
1010
[JsonProperty(PropertyName = "match_id")]
11-
public int MatchId { get; set; }
11+
public long MatchId { get; set; }
1212

1313
[JsonProperty(PropertyName = "match_seq_num")]
1414
public int MatchSequenceNumber { get; set; }

SteamWebAPI2/SteamWebAPI2.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
<file src="..\bin\Release\portable\SteamWebAPI2.pdb" target="lib\portable-net452+win81\SteamWebAPI2.pdb"/>
1919
<file src="..\bin\Release\portable\SteamWebAPI2.dll" target="lib\portable-net452+win81\SteamWebAPI2.dll"/>
2020

21-
<file src="..\bin\Release\net452\SteamWebAPI2.pdb" target="lib\net451\SteamWebAPI2.pdb"/>
22-
<file src="..\bin\Release\net452\SteamWebAPI2.dll" target="lib\net451\SteamWebAPI2.dll"/>
21+
<file src="..\bin\Release\net451\SteamWebAPI2.pdb" target="lib\net451\SteamWebAPI2.pdb"/>
22+
<file src="..\bin\Release\net451\SteamWebAPI2.dll" target="lib\net451\SteamWebAPI2.dll"/>
2323

2424
<file src="..\bin\Release\net452\SteamWebAPI2.pdb" target="lib\net452\SteamWebAPI2.pdb"/>
2525
<file src="..\bin\Release\net452\SteamWebAPI2.dll" target="lib\net452\SteamWebAPI2.dll"/>

0 commit comments

Comments
 (0)