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
|
|
}
|
|
}
|