SyncJobStatus.cs 794 B

1234567891011121314151617181920212223242526272829303132333435
  1. 
  2. namespace MediaBrowser.Model.Sync
  3. {
  4. public enum SyncJobStatus
  5. {
  6. /// <summary>
  7. /// The queued
  8. /// </summary>
  9. Queued = 0,
  10. /// <summary>
  11. /// The transcoding
  12. /// </summary>
  13. Transcoding = 1,
  14. /// <summary>
  15. /// The transcoding failed
  16. /// </summary>
  17. TranscodingFailed = 2,
  18. /// <summary>
  19. /// The transcoding completed
  20. /// </summary>
  21. TranscodingCompleted = 3,
  22. /// <summary>
  23. /// The transfering
  24. /// </summary>
  25. Transfering = 4,
  26. /// <summary>
  27. /// The transfer failed
  28. /// </summary>
  29. TransferFailed = 4,
  30. /// <summary>
  31. /// The completed
  32. /// </summary>
  33. Completed = 6
  34. }
  35. }