2019-01-24 16:43:03 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-10-23 17:04:38 +08:00
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-10-23 17:04:38 +08:00
|
|
|
|
using System.Collections.Generic;
|
2020-02-19 22:32:43 +08:00
|
|
|
|
using Newtonsoft.Json;
|
2018-10-23 17:04:38 +08:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Online.API.Requests
|
|
|
|
|
{
|
2019-10-11 12:09:21 +08:00
|
|
|
|
public class SearchBeatmapSetsResponse : ResponseWithCursor
|
2018-10-23 17:04:38 +08:00
|
|
|
|
{
|
2020-02-19 22:32:43 +08:00
|
|
|
|
[JsonProperty("beatmapsets")]
|
2018-10-23 17:04:38 +08:00
|
|
|
|
public IEnumerable<APIBeatmapSet> BeatmapSets;
|
2020-02-19 22:32:43 +08:00
|
|
|
|
|
|
|
|
|
[JsonProperty("total")]
|
|
|
|
|
public int Total;
|
2018-10-23 17:04:38 +08:00
|
|
|
|
}
|
|
|
|
|
}
|