SubtitleDownloadFailureEventArgs.cs 683 B

12345678910111213141516171819202122232425262728
  1. #nullable disable
  2. using System;
  3. using MediaBrowser.Controller.Entities;
  4. namespace MediaBrowser.Controller.Subtitles
  5. {
  6. /// <summary>
  7. /// An event that occurs when subtitle downloading fails.
  8. /// </summary>
  9. public class SubtitleDownloadFailureEventArgs : EventArgs
  10. {
  11. /// <summary>
  12. /// Gets or sets the item.
  13. /// </summary>
  14. public BaseItem Item { get; set; }
  15. /// <summary>
  16. /// Gets or sets the provider.
  17. /// </summary>
  18. public string Provider { get; set; }
  19. /// <summary>
  20. /// Gets or sets the exception.
  21. /// </summary>
  22. public Exception Exception { get; set; }
  23. }
  24. }