mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-12 14:11:50 +01:00
12 lines
182 B
C#
12 lines
182 B
C#
|
|
namespace MediaBrowser.Model.Sync
|
|
{
|
|
public enum SyncJobStatus
|
|
{
|
|
Queued = 0,
|
|
InProgress = 1,
|
|
Completed = 2,
|
|
CompletedWithError = 3
|
|
}
|
|
}
|