using System.Collections.Generic;
namespace MediaBrowser.Model.Sync
{
public class SyncJobRequest
{
///
/// Gets or sets the device identifier.
///
/// The device identifier.
public List TargetIds { get; set; }
///
/// Gets or sets the item identifier.
///
/// The item identifier.
public string ItemId { get; set; }
///
/// Gets or sets the quality.
///
/// The quality.
public SyncQuality Quality { get; set; }
public SyncJobRequest()
{
TargetIds = new List();
}
}
}