more sync movement

This commit is contained in:
Luke Pulverenti
2014-12-12 22:56:30 -05:00
parent 3fb40eb02e
commit ab3da46113
49 changed files with 1001 additions and 149 deletions

View File

@@ -4,9 +4,8 @@ namespace MediaBrowser.Model.Sync
public enum SyncJobStatus
{
Queued = 0,
Converting = 1,
Transferring = 2,
Completed = 3,
Cancelled = 4
InProgress = 1,
Completed = 2,
CompletedWithError = 3
}
}