// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Collections.Generic; using Newtonsoft.Json; using osu.Game.Online.API.Requests; namespace osu.Game.Online.Multiplayer { /// /// An object which contains scores and related data for fetching next pages. /// public class MultiplayerScores : ResponseWithCursor { /// /// The scores. /// [JsonProperty("scores")] public List Scores { get; set; } /// /// The total scores in the playlist item. Only provided via . /// [JsonProperty("total")] public int? TotalScores { get; set; } /// /// The user's score, if any. Only provided via . /// [JsonProperty("user_score")] public MultiplayerScore UserScore { get; set; } /// /// The parameters to be used to fetch the next page. /// [JsonProperty("params")] public IndexScoresParams Params { get; set; } } }