jellyfin/MediaBrowser.Model/Sync/SyncJobStatus.cs
2014-12-11 01:20:28 -05:00

12 lines
199 B
C#

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