mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-19 11:59:02 -07:00
14 lines
226 B
C#
14 lines
226 B
C#
|
|
namespace MediaBrowser.Model.Sync
|
|
{
|
|
public enum SyncJobItemStatus
|
|
{
|
|
Queued = 0,
|
|
Converting = 1,
|
|
ReadyToTransfer = 2,
|
|
Transferring = 3,
|
|
Synced = 4,
|
|
Failed = 5
|
|
}
|
|
}
|