// 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.Rooms { /// /// 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; } = new List(); /// /// The parameters to be used to fetch the next page. /// [JsonProperty("params")] public IndexScoresParams Params { get; set; } = new IndexScoresParams(); } }