1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 14:47:23 +08:00
osu-lazer/osu.Game/Online/API/Requests/Responses/APIUserMostPlayedBeatmap.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
873 B
C#
Raw Normal View History

// 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 11:06:58 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
2018-06-08 11:06:58 +08:00
using Newtonsoft.Json;
namespace osu.Game.Online.API.Requests.Responses
{
public class APIUserMostPlayedBeatmap
{
[JsonProperty("beatmap_id")]
2019-04-25 16:36:17 +08:00
public int BeatmapID { get; set; }
[JsonProperty("count")]
2019-04-25 16:36:17 +08:00
public int PlayCount { get; set; }
[JsonProperty("beatmap")]
private APIBeatmap beatmap { get; set; }
public APIBeatmap BeatmapInfo
{
get
{
// old osu-web code doesn't nest set.
beatmap.BeatmapSet = BeatmapSet;
return beatmap;
}
}
[JsonProperty("beatmapset")]
public APIBeatmapSet BeatmapSet { get; set; }
}
}