LyricDownloadFailureEventArgs.cs 685 B

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