namespace MediaBrowser.Model.Sync
{
public enum SyncJobStatus
{
///
/// The queued
///
Queued = 0,
///
/// The transcoding
///
Transcoding = 1,
///
/// The transcoding failed
///
TranscodingFailed = 2,
///
/// The transcoding completed
///
TranscodingCompleted = 3,
///
/// The transfering
///
Transfering = 4,
///
/// The transfer failed
///
TransferFailed = 4,
///
/// The completed
///
Completed = 6
}
}