mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:07:25 +08:00
41 lines
1.2 KiB
C#
41 lines
1.2 KiB
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
|
|
|
|
namespace osu.Game.Online.API.Requests
|
|
{
|
|
/// <summary>
|
|
/// Represents a pagination data used for <see cref="PaginatedAPIRequest{T}"/>.
|
|
/// </summary>
|
|
public readonly struct PaginationParameters
|
|
{
|
|
/// <summary>
|
|
/// The starting point of the request.
|
|
/// </summary>
|
|
public int Offset { get; }
|
|
|
|
/// <summary>
|
|
/// The maximum number of items to return in this request.
|
|
/// </summary>
|
|
public int Limit { get; }
|
|
|
|
public PaginationParameters(int offset, int limit)
|
|
{
|
|
Offset = offset;
|
|
Limit = limit;
|
|
}
|
|
|
|
public PaginationParameters(int limit)
|
|
: this(0, limit)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a <see cref="PaginationParameters"/> of the next number of items defined by <paramref name="limit"/> after this.
|
|
/// </summary>
|
|
/// <param name="limit">The limit of the next pagination.</param>
|
|
public PaginationParameters TakeNext(int limit) => new PaginationParameters(Offset + Limit, limit);
|
|
}
|
|
}
|