Skip to content

Commit a1d378b

Browse files
Erik Bylundkirre-bylund
authored andcommitted
Make leaderboard listing response actually parseable
1 parent ce4d1af commit a1d378b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Runtime/Game/Requests/LeaderboardRequest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,12 +231,12 @@ public class LootLockerListLeaderboardsResponse : LootLockerResponse
231231
/// <summary>
232232
/// Pagination data to use for subsequent requests
233233
/// </summary>
234-
LootLockerPaginationResponse<int> pagination;
234+
public LootLockerPaginationResponse<int> pagination { get; set; }
235235

236236
// <summary>
237237
// List of details for the requested leaderboards
238238
// </summary>
239-
LootLockerLeaderboardDetails[] items;
239+
public LootLockerLeaderboardDetails[] items { get; set; }
240240
}
241241

242242
public class LootLockerGetMemberRankResponse : LootLockerResponse

0 commit comments

Comments
 (0)