// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. #nullable disable using JetBrains.Annotations; using Newtonsoft.Json; namespace osu.Game.Online.Rooms { /// /// A object returned via a . /// public class IndexedMultiplayerScores : MultiplayerScores { /// /// The total scores in the playlist item. /// [JsonProperty("total")] public long? TotalScores { get; set; } /// /// The user's score, if any. /// [JsonProperty("user_score")] [CanBeNull] public MultiplayerScore UserScore { get; set; } } }