1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 09:07:25 +08:00
osu-lazer/osu.Game/Online/API/Requests/GetUserBeatmapsRequest.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
977 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.
2018-04-13 17:19:50 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
using System.Collections.Generic;
using osu.Game.Extensions;
using osu.Game.Online.API.Requests.Responses;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Online.API.Requests
{
public class GetUserBeatmapsRequest : PaginatedAPIRequest<List<APIBeatmapSet>>
{
private readonly long userId;
2017-11-07 17:38:10 +08:00
private readonly BeatmapSetType type;
2018-04-13 17:19:50 +08:00
2022-04-19 07:48:34 +08:00
public GetUserBeatmapsRequest(long userId, BeatmapSetType type, PaginationParameters pagination)
: base(pagination)
{
this.userId = userId;
2017-11-07 17:38:10 +08:00
this.type = type;
}
2018-04-13 17:19:50 +08:00
protected override string Target => $@"users/{userId}/beatmapsets/{type.ToString().ToSnakeCase()}";
}
2018-04-13 17:19:50 +08:00
public enum BeatmapSetType
{
Favourite,
Ranked,
2019-08-01 16:06:29 +08:00
Loved,
Pending,
Guest,
Graveyard
}
}