// 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 JetBrains.Annotations; using Newtonsoft.Json; using Newtonsoft.Json.Linq; namespace osu.Game.Online.Multiplayer { /// /// A collection of parameters which should be passed to the index endpoint to fetch the next page. /// public class IndexScoresParams { [UsedImplicitly] [JsonExtensionData] public IDictionary Properties; } }