mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 02:27:51 +08:00
18 lines
542 B
C#
18 lines
542 B
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
namespace osu.Game.Online.API.Requests
|
|
{
|
|
public class GetBeatmapSetRequest : APIRequest<GetBeatmapSetsResponse>
|
|
{
|
|
private readonly int beatmapSetId;
|
|
|
|
public GetBeatmapSetRequest(int beatmapSetId)
|
|
{
|
|
this.beatmapSetId = beatmapSetId;
|
|
}
|
|
|
|
protected override string Target => $@"beatmapsets/{beatmapSetId}";
|
|
}
|
|
}
|