Files
jellyfin-jellyfin-1/MediaBrowser.Model/Sync/SyncJobStatus.cs

13 lines
199 B
C#
Raw Normal View History

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

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