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

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