mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
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
|
|
}
|
|
}
|