1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 16:47:26 +08:00
osu-lazer/osu.Game/Online/API/Requests/GetSpotlightsRequest.cs

21 lines
577 B
C#
Raw Normal View History

2020-01-10 20:48:54 +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.
using System.Collections.Generic;
using Newtonsoft.Json;
2020-01-10 20:48:54 +08:00
using osu.Game.Online.API.Requests.Responses;
namespace osu.Game.Online.API.Requests
{
2020-01-11 01:46:35 +08:00
public class GetSpotlightsRequest : APIRequest<SpotlightsCollection>
2020-01-10 20:48:54 +08:00
{
protected override string Target => "spotlights";
}
2020-01-11 01:46:35 +08:00
public class SpotlightsCollection
{
[JsonProperty("spotlights")]
public List<APISpotlight> Spotlights;
}
2020-01-10 20:48:54 +08:00
}