You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
458 B
19 lines
458 B
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; }
|
|
}
|
|
}
|