using System; using MediaBrowser.Controller.Entities; namespace MediaBrowser.Controller.Lyrics { /// /// An event that occurs when subtitle downloading fails. /// public class LyricDownloadFailureEventArgs : EventArgs { /// /// Gets or sets the item. /// public required BaseItem Item { get; set; } /// /// Gets or sets the provider. /// public required string Provider { get; set; } /// /// Gets or sets the exception. /// public required Exception Exception { get; set; } } }