Move and rename nomination response model to singular

This commit is contained in:
Joseph Madamba
2023-01-07 10:54:48 -08:00
parent 7f970f3cd8
commit 0f6735564e
4 changed files with 9 additions and 8 deletions

View File

@ -112,7 +112,7 @@ namespace osu.Game.Online.API.Requests.Responses
public BeatmapSetOnlineLanguage Language { get; set; }
[JsonProperty(@"current_nominations")]
public BeatmapSetOnlineNominations[] CurrentNominations { get; set; } = Array.Empty<BeatmapSetOnlineNominations>();
public BeatmapSetOnlineNomination[] CurrentNominations { get; set; } = Array.Empty<BeatmapSetOnlineNomination>();
[JsonProperty(@"related_users")]
public APIUser[] RelatedUsers { get; set; } = Array.Empty<APIUser>();