jellyfin/MediaBrowser.Model/Sync/SyncJobStatus.cs
2014-07-26 13:30:15 -04:00

14 lines
230 B
C#

namespace MediaBrowser.Model.Sync
{
public enum SyncJobStatus
{
Queued = 0,
Transcoding = 1,
TranscodingFailed = 2,
Transfering = 3,
Completed = 4,
Cancelled = 5
}
}