mirror of
https://github.com/ppy/osu.git
synced 2025-03-15 22:37:21 +08:00
Expand SearchBeatmapSetsResponse
This commit is contained in:
parent
1442f5e0db
commit
01202f09be
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user