namespace MediaBrowser.Model.Sync
{
public class SyncJob
{
///
/// Gets or sets the identifier.
///
/// The identifier.
public string Id { get; set; }
///
/// Gets or sets the device identifier.
///
/// The device identifier.
public string DeviceId { 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; }
///
/// Gets or sets the status.
///
/// The status.
public SyncJobStatus Status { get; set; }
///
/// Gets or sets the current progress.
///
/// The current progress.
public double? CurrentProgress { get; set; }
///
/// Gets or sets the synchronize rule identifier.
///
/// The synchronize rule identifier.
public string SyncScheduleId { get; set; }
///
/// Gets or sets the transcoded path.
///
/// The transcoded path.
public string TranscodedPath { get; set; }
}
}