// 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 { /// /// To be used for fetching the next page. /// [JsonProperty("cursor")] public Cursor Cursor { get; set; } /// /// 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; } } }