// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Controller.Lyrics { using System; using MediaBrowser.Controller.Entities; /// /// 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; } } }