mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 22:17:25 -04:00
18 lines
458 B
C#
18 lines
458 B
C#
namespace Jellyfin.Data.Queries
|
|
{
|
|
/// <summary>
|
|
/// An abstract class for paginated queries.
|
|
/// </summary>
|
|
public abstract class PaginatedQuery
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the index to start at.
|
|
/// </summary>
|
|
public int? Skip { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the maximum number of items to include.
|
|
/// </summary>
|
|
public int? Limit { get; set; }
|
|
}
|
|
}
|