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