Merge pull request #16850 from frenzibyte/readonly-pinned-scores

Add read-only pinned scores view in user profile overlay
This commit is contained in:
Dan Balasescu
2022-02-11 16:15:46 +09:00
committed by GitHub
7 changed files with 12 additions and 4 deletions

View File

@ -39,6 +39,7 @@ namespace osu.Game.Online.API.Requests
{
Best,
Firsts,
Recent
Recent,
Pinned
}
}

View File

@ -151,6 +151,9 @@ namespace osu.Game.Online.API.Requests.Responses
[JsonProperty(@"scores_recent_count")]
public int ScoresRecentCount;
[JsonProperty(@"scores_pinned_count")]
public int ScoresPinnedCount;
[JsonProperty(@"beatmap_playcounts_count")]
public int BeatmapPlayCountsCount;