2019-01-24 08:43:03 +00:00
|
|
|
|
// 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.
|
2018-06-08 03:06:58 +00:00
|
|
|
|
|
|
|
|
|
using Newtonsoft.Json;
|
2018-06-08 02:41:54 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Online.API.Requests.Responses
|
|
|
|
|
{
|
|
|
|
|
public class APIUserMostPlayedBeatmap
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("beatmap_id")]
|
2019-04-25 08:36:17 +00:00
|
|
|
|
public int BeatmapID { get; set; }
|
2018-06-08 02:41:54 +00:00
|
|
|
|
|
|
|
|
|
[JsonProperty("count")]
|
2019-04-25 08:36:17 +00:00
|
|
|
|
public int PlayCount { get; set; }
|
2018-06-08 02:41:54 +00:00
|
|
|
|
|
2021-10-05 19:12:35 +00:00
|
|
|
|
[JsonProperty("beatmap")]
|
2021-10-22 12:25:13 +00:00
|
|
|
|
private APIBeatmap beatmap { get; set; }
|
2018-06-08 02:41:54 +00:00
|
|
|
|
|
2021-10-22 12:25:13 +00:00
|
|
|
|
public APIBeatmap BeatmapInfo
|
2018-06-08 02:41:54 +00:00
|
|
|
|
{
|
2021-10-22 12:25:13 +00:00
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
// old osu-web code doesn't nest set.
|
|
|
|
|
beatmap.BeatmapSet = BeatmapSet;
|
|
|
|
|
return beatmap;
|
|
|
|
|
}
|
2018-06-08 02:41:54 +00:00
|
|
|
|
}
|
2021-10-22 12:25:13 +00:00
|
|
|
|
|
|
|
|
|
[JsonProperty("beatmapset")]
|
|
|
|
|
public APIBeatmapSet BeatmapSet { get; set; }
|
2018-06-08 02:41:54 +00:00
|
|
|
|
}
|
|
|
|
|
}
|