1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 11:57:24 +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.

35 lines
943 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
2017-11-07 17:38:10 +08:00
using Humanizer;
using System.Collections.Generic;
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
2019-07-19 15:02:33 +08:00
public GetUserBeatmapsRequest(long userId, BeatmapSetType type, int page = 0, int itemsPerPage = 6)
: base(page, itemsPerPage)
{
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().Underscore()}";
}
2018-04-13 17:19:50 +08:00
public enum BeatmapSetType
{
Favourite,
Ranked,
2019-08-01 16:06:29 +08:00
Loved,
Pending,
Graveyard
}
}