aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Sync/SyncJobStatus.cs
blob: e8cc8d2bfbc15064e385bd00152d0c58f6cda34e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma warning disable CS1591
#pragma warning disable SA1600

namespace MediaBrowser.Model.Sync
{
    public enum SyncJobStatus
    {
        Queued = 0,
        Converting = 1,
        ReadyToTransfer = 2,
        Transferring = 3,
        Completed = 4,
        CompletedWithError = 5,
        Failed = 6
    }
}