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 item identifier.
///
/// The item identifier.
public string ItemId { 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[] Statuses { get; set; }
///
/// Gets or sets a value indicating whether [add metadata].
///
/// true if [add metadata]; otherwise, false.
public bool AddMetadata { get; set; }
public SyncJobItemQuery()
{
Statuses = new SyncJobItemStatus[] {};
}
}
}