namespace Jellyfin.Data.Queries
{
///
/// An abstract class for paginated queries.
///
public abstract class PaginatedQuery
{
///
/// Gets or sets the index to start at.
///
public int? Skip { get; set; }
///
/// Gets or sets the maximum number of items to include.
///
public int? Limit { get; set; }
}
}