osu/osu.Game/Online/API/Requests/SearchBeatmapSetsResponse.cs

19 lines
528 B
C#
Raw Normal View History

// 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.
using System.Collections.Generic;
2020-02-19 14:32:43 +00:00
using Newtonsoft.Json;
using osu.Game.Online.API.Requests.Responses;
namespace osu.Game.Online.API.Requests
{
public class SearchBeatmapSetsResponse : ResponseWithCursor
{
2020-02-19 14:32:43 +00:00
[JsonProperty("beatmapsets")]
public IEnumerable<APIBeatmapSet> BeatmapSets;
2020-02-19 14:32:43 +00:00
[JsonProperty("total")]
public int Total;
}
}