// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using Newtonsoft.Json; namespace osu.Game.Online.Multiplayer { /// /// An object which stores scores higher and lower than the user's score. /// public class MultiplayerScoresAround { /// /// Scores sorted "higher" than the user's score, depending on the sorting order. /// [JsonProperty("higher")] public MultiplayerScores Higher { get; set; } /// /// Scores sorted "lower" than the user's score, depending on the sorting order. /// [JsonProperty("lower")] public MultiplayerScores Lower { get; set; } } }