osu/osu.Game/Online/API/Requests/GetUserBeatmapsRequest.cs

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

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