2
0

ProviderRefreshStatus.cs 469 B

12345678910111213141516171819202122
  1. 
  2. namespace MediaBrowser.Controller.Providers
  3. {
  4. /// <summary>
  5. /// Enum ProviderRefreshStatus
  6. /// </summary>
  7. public enum ProviderRefreshStatus
  8. {
  9. /// <summary>
  10. /// The success
  11. /// </summary>
  12. Success = 0,
  13. /// <summary>
  14. /// The completed with errors
  15. /// </summary>
  16. CompletedWithErrors = 1,
  17. /// <summary>
  18. /// The failure
  19. /// </summary>
  20. Failure = 2
  21. }
  22. }