jellyfin/MediaBrowser.Model/Sync/SyncJobItemStatus.cs
2014-12-12 22:56:30 -05:00

12 lines
200 B
C#

namespace MediaBrowser.Model.Sync
{
public enum SyncJobItemStatus
{
Queued = 0,
Converting = 1,
Transferring = 2,
Completed = 3,
Failed = 4
}
}