mirror of
https://github.com/osukey/osukey.git
synced 2025-05-06 22:27:25 +09:00
osu-web API is already returning both of these casings for backwards
compatibility, but the former will be removed at some point.
e540276721/app/Http/Controllers/BeatmapsController.php (L314-L315)
20 lines
495 B
C#
20 lines
495 B
C#
// 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.
|
|
|
|
#nullable disable
|
|
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace osu.Game.Online.API.Requests.Responses
|
|
{
|
|
public class APIScoresCollection
|
|
{
|
|
[JsonProperty(@"scores")]
|
|
public List<SoloScoreInfo> Scores;
|
|
|
|
[JsonProperty(@"user_score")]
|
|
public APIScoreWithPosition UserScore;
|
|
}
|
|
}
|