aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/FileSorting/FileSortingResultQuery.cs
blob: 7a83cad7b07c6fa41069e47e594d11e29a0cecbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace MediaBrowser.Model.FileSorting
{
    public class FileSortingResultQuery
    {
        /// <summary>
        /// Skips over a given number of items within the results. Use for paging.
        /// </summary>
        /// <value>The start index.</value>
        public int? StartIndex { get; set; }

        /// <summary>
        /// The maximum number of items to return
        /// </summary>
        /// <value>The limit.</value>
        public int? Limit { get; set; }
    }
}