aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/FileOrganization/FileOrganizationResultQuery.cs
blob: 18287534ea9c7bdeebb8527265de0ac63acf8819 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace MediaBrowser.Model.FileOrganization
{
    public class FileOrganizationResultQuery
    {
        /// <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; }
    }
}