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 ids.
///
/// The item ids.
public List ItemIds { get; set; }
///
/// Gets or sets the quality.
///
/// The quality.
public SyncQuality Quality { get; set; }
///
/// Gets or sets the name.
///
/// The name.
public string Name { get; set; }
public SyncJobRequest()
{
TargetIds = new List();
ItemIds = new List();
}
}
}