Merge pull request #15513 from bdach/beatmap-card/statistics

Add statistics display to beatmap card
This commit is contained in:
Dean Herbert
2021-11-08 14:45:56 +09:00
committed by GitHub
12 changed files with 356 additions and 0 deletions

View File

@ -61,6 +61,12 @@ namespace osu.Game.Online.API.Requests.Responses
[JsonProperty(@"track_id")]
public int? TrackId { get; set; }
[JsonProperty(@"hype")]
public BeatmapSetHypeStatus? HypeStatus { get; set; }
[JsonProperty(@"nominations_summary")]
public BeatmapSetNominationStatus? NominationStatus { get; set; }
public string Title { get; set; } = string.Empty;
[JsonProperty("title_unicode")]