namespace MediaBrowser.Model.Sync
{
public class SyncJobItemQuery
{
///
/// 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; }
///
/// Gets or sets the job identifier.
///
/// The job identifier.
public string JobId { get; set; }
///
/// Gets or sets the target identifier.
///
/// The target identifier.
public string TargetId { get; set; }
///
/// Gets or sets the status.
///
/// The status.
public SyncJobItemStatus? Status { get; set; }
}
}