mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Expand SearchBeatmapSetsResponse
This commit is contained in:
@ -2,12 +2,20 @@
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using osu.Game.Online.API.Requests.Responses;
|
||||
|
||||
namespace osu.Game.Online.API.Requests
|
||||
{
|
||||
public class SearchBeatmapSetsResponse : ResponseWithCursor
|
||||
{
|
||||
[JsonProperty("beatmapsets")]
|
||||
public IEnumerable<APIBeatmapSet> BeatmapSets;
|
||||
|
||||
[JsonProperty("error")]
|
||||
public string Error;
|
||||
|
||||
[JsonProperty("total")]
|
||||
public int Total;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user