aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Sync/SyncJobStatus.cs
blob: ebe375ad8028e610230c430a40e5078fb5864459 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace MediaBrowser.Model.Sync
{
    public enum SyncJobStatus
    {
        Queued = 0,
        Transcoding = 1,
        TranscodingFailed = 2,
        Transferring = 3,
        Completed = 4,
        Cancelled = 5
    }
}