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