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

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
2018-04-13 17:19:50 +08:00
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>>
2018-04-13 17:19:50 +08:00
{
private readonly long userId;
2018-04-13 17:19:50 +08:00
private readonly BeatmapSetType type;
2022-04-19 07:48:34 +08:00
public GetUserBeatmapsRequest(long userId, BeatmapSetType type, PaginationParameters pagination)
: base(pagination)
2018-04-13 17:19:50 +08:00
{
this.userId = userId;
this.type = type;
}
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,
2018-04-13 17:19:50 +08:00
Graveyard
}
}