sync updates

This commit is contained in:
Luke Pulverenti
2015-02-04 14:13:00 -05:00
parent 6c3209e3f9
commit f2c3e014b7
14 changed files with 61 additions and 23 deletions

View File

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