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

33 lines
936 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
using Newtonsoft.Json;
using osu.Game.Beatmaps;
using osu.Game.Rulesets;
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]
2021-10-02 23:55:29 +08:00
private BeatmapInfo beatmapInfo { get; set; }
[JsonProperty]
2019-04-25 16:36:17 +08:00
private APIBeatmapSet beatmapSet { get; set; }
public BeatmapInfo GetBeatmapInfo(RulesetStore rulesets)
{
BeatmapSetInfo setInfo = beatmapSet.ToBeatmapSet(rulesets);
2021-10-02 23:55:29 +08:00
beatmapInfo.BeatmapSet = setInfo;
beatmapInfo.Metadata = setInfo.Metadata;
return beatmapInfo;
}
}
}