2019-01-24 08:43:03 +00: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 09:04:38 +00:00
|
|
|
|
|
2022-06-17 07:37:17 +00:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-10-23 09:04:38 +00:00
|
|
|
|
using System.Collections.Generic;
|
2020-02-19 14:32:43 +00:00
|
|
|
|
using Newtonsoft.Json;
|
2018-10-23 09:04:38 +00:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Online.API.Requests
|
|
|
|
|
{
|
2019-10-11 04:09:21 +00:00
|
|
|
|
public class SearchBeatmapSetsResponse : ResponseWithCursor
|
2018-10-23 09:04:38 +00:00
|
|
|
|
{
|
2020-02-19 14:32:43 +00:00
|
|
|
|
[JsonProperty("beatmapsets")]
|
2018-10-23 09:04:38 +00:00
|
|
|
|
public IEnumerable<APIBeatmapSet> BeatmapSets;
|
2020-02-19 14:32:43 +00:00
|
|
|
|
|
|
|
|
|
[JsonProperty("total")]
|
|
|
|
|
public int Total;
|
2018-10-23 09:04:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|