16 lines
280 B
C#
16 lines
280 B
C#
|
|
namespace MediaBrowser.Model.Sync
|
|
{
|
|
public enum SyncJobStatus
|
|
{
|
|
Queued = 0,
|
|
Converting = 1,
|
|
ReadyToTransfer = 2,
|
|
Transferring = 3,
|
|
Completed = 4,
|
|
CompletedWithError = 5,
|
|
Failed = 6,
|
|
Cancelled = 7
|
|
}
|
|
}
|