mirror of
https://github.com/ppy/osu.git
synced 2025-02-13 19:12:54 +08:00
Add more annotations
This commit is contained in:
parent
88e179d8aa
commit
eadef53e68
@ -1,6 +1,7 @@
|
|||||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||||
// See the LICENCE file in the repository root for full licence text.
|
// See the LICENCE file in the repository root for full licence text.
|
||||||
|
|
||||||
|
using JetBrains.Annotations;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace osu.Game.Online.Multiplayer
|
namespace osu.Game.Online.Multiplayer
|
||||||
@ -14,12 +15,14 @@ namespace osu.Game.Online.Multiplayer
|
|||||||
/// Scores sorted "higher" than the user's score, depending on the sorting order.
|
/// Scores sorted "higher" than the user's score, depending on the sorting order.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("higher")]
|
[JsonProperty("higher")]
|
||||||
|
[CanBeNull]
|
||||||
public MultiplayerScores Higher { get; set; }
|
public MultiplayerScores Higher { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Scores sorted "lower" than the user's score, depending on the sorting order.
|
/// Scores sorted "lower" than the user's score, depending on the sorting order.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("lower")]
|
[JsonProperty("lower")]
|
||||||
|
[CanBeNull]
|
||||||
public MultiplayerScores Lower { get; set; }
|
public MultiplayerScores Lower { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user