1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-15 22:27:46 +08:00

Expand SearchBeatmapSetsResponse

This commit is contained in:
Andrei Zavatski 2020-02-19 17:32:43 +03:00
parent 1442f5e0db
commit 01202f09be

View File

@ -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;
}
}