Remove OnlineBeatmapSetID from BeatmapMetadata

This commit is contained in:
Dean Herbert
2018-06-08 12:46:34 +09:00
parent d1e9dba4aa
commit 8220e0c79a
10 changed files with 30 additions and 30 deletions

View File

@ -15,6 +15,15 @@ namespace osu.Game.Online.API.Requests.Responses
[JsonProperty(@"covers")]
private BeatmapSetOnlineCovers covers { get; set; }
private int? onlineBeatmapSetID;
[JsonProperty(@"id")]
public int? OnlineBeatmapSetID
{
get { return onlineBeatmapSetID; }
set { onlineBeatmapSetID = value > 0 ? value : null; }
}
[JsonProperty(@"preview_url")]
private string preview { get; set; }