update sync objects

This commit is contained in:
Luke Pulverenti
2014-12-11 01:20:28 -05:00
parent 4548e6598d
commit ea9e8b957c
95 changed files with 730 additions and 330 deletions

View File

@@ -4,10 +4,9 @@ namespace MediaBrowser.Model.Sync
public enum SyncJobStatus
{
Queued = 0,
Transcoding = 1,
TranscodingFailed = 2,
Transferring = 3,
Completed = 4,
Cancelled = 5
Converting = 1,
Transferring = 2,
Completed = 3,
Cancelled = 4
}
}