15 lines
316 B
C#
15 lines
316 B
C#
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; }
|
|
}
|
|
}
|