aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Queries/PaginatedQuery.cs
blob: 58267ebe7fff479dfa251859915a13d5a69defe4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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; }
    }
}