mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:47:52 +08:00
31 lines
903 B
C#
31 lines
903 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.
|
|
|
|
#nullable disable
|
|
|
|
using System.Globalization;
|
|
using osu.Framework.IO.Network;
|
|
|
|
namespace osu.Game.Online.API.Requests
|
|
{
|
|
public abstract class PaginatedAPIRequest<T> : APIRequest<T> where T : class
|
|
{
|
|
private readonly PaginationParameters pagination;
|
|
|
|
protected PaginatedAPIRequest(PaginationParameters pagination)
|
|
{
|
|
this.pagination = pagination;
|
|
}
|
|
|
|
protected override WebRequest CreateWebRequest()
|
|
{
|
|
var req = base.CreateWebRequest();
|
|
|
|
req.AddParameter("offset", pagination.Offset.ToString(CultureInfo.InvariantCulture));
|
|
req.AddParameter("limit", pagination.Limit.ToString(CultureInfo.InvariantCulture));
|
|
|
|
return req;
|
|
}
|
|
}
|
|
}
|