mirror of
https://github.com/ppy/osu.git
synced 2024-11-14 14:27:25 +08:00
29 lines
732 B
C#
29 lines
732 B
C#
// 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.
|
|
|
|
using osu.Framework.IO.Network;
|
|
|
|
namespace osu.Game.Online.API.Requests
|
|
{
|
|
public class GetKudosuRankingsRequest : APIRequest<GetKudosuRankingsResponse>
|
|
{
|
|
private readonly int page;
|
|
|
|
public GetKudosuRankingsRequest(int page = 1)
|
|
{
|
|
this.page = page;
|
|
}
|
|
|
|
protected override WebRequest CreateWebRequest()
|
|
{
|
|
var req = base.CreateWebRequest();
|
|
|
|
req.AddParameter(@"page", page.ToString());
|
|
|
|
return req;
|
|
}
|
|
|
|
protected override string Target => @"rankings/kudosu";
|
|
}
|
|
}
|