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; } } }