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; }
///
/// Gets or sets a value indicating whether this instance is completed.
///
/// null if [is completed] contains no value, true if [is completed]; otherwise, false.
public bool? IsCompleted { get; set; }
}
}