1 2 3 4 5 6 7 8 9 10 11 12 13 14
using System; using MediaBrowser.Controller.Entities; namespace MediaBrowser.Controller.Subtitles { public class SubtitleDownloadFailureEventArgs : EventArgs { public BaseItem Item { get; set; } public string Provider { get; set; } public Exception Exception { get; set; } } }