jellyfin/MediaBrowser.Model/Sync/SyncJobStatus.cs

13 lines
199 B
C#
Raw Normal View History

2014-07-15 04:12:26 +00:00

namespace MediaBrowser.Model.Sync
{
public enum SyncJobStatus
{
Queued = 0,
2014-12-11 06:20:28 +00:00
Converting = 1,
Transferring = 2,
Completed = 3,
Cancelled = 4
2014-07-15 04:12:26 +00:00
}
}