SyncJobStatus.cs 182 B

1234567891011
  1. 
  2. namespace MediaBrowser.Model.Sync
  3. {
  4. public enum SyncJobStatus
  5. {
  6. Queued = 0,
  7. InProgress = 1,
  8. Completed = 2,
  9. CompletedWithError = 3
  10. }
  11. }