mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-10 00:47:39 +01:00
12 lines
200 B
C#
12 lines
200 B
C#
|
|
namespace MediaBrowser.Model.Sync
|
|
{
|
|
public enum SyncJobItemStatus
|
|
{
|
|
Queued = 0,
|
|
Converting = 1,
|
|
Transferring = 2,
|
|
Completed = 3,
|
|
Failed = 4
|
|
}
|
|
}
|