namespace MediaBrowser.Model.Sync
{
public class SyncJobQuery
{
///
/// Gets or sets the start index.
///
/// The start index.
public int? StartIndex { get; set; }
///
/// Gets or sets the limit.
///
/// The limit.
public int? Limit { get; set; }
}
}