aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Sync/SyncJobQuery.cs
blob: 74b35186e0421a2d36c7f3a0bd632c6b6df1a19b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace MediaBrowser.Model.Sync
{
    public class SyncJobQuery
    {
        /// <summary>
        /// Gets or sets the start index.
        /// </summary>
        /// <value>The start index.</value>
        public int? StartIndex { get; set; }
        /// <summary>
        /// Gets or sets the limit.
        /// </summary>
        /// <value>The limit.</value>
        public int? Limit { get; set; }
    }
}