jellyfin/MediaBrowser.Controller/Subtitles/SubtitleDownloadFailureEven...

29 lines
683 B
C#
Raw Normal View History

#nullable disable
2020-08-13 20:30:43 -04:00
using System;
using MediaBrowser.Controller.Entities;
namespace MediaBrowser.Controller.Subtitles
{
/// <summary>
/// An event that occurs when subtitle downloading fails.
/// </summary>
2020-08-13 20:30:43 -04:00
public class SubtitleDownloadFailureEventArgs : EventArgs
{
/// <summary>
/// Gets or sets the item.
/// </summary>
2020-08-13 20:30:43 -04:00
public BaseItem Item { get; set; }
/// <summary>
/// Gets or sets the provider.
/// </summary>
2020-08-13 20:30:43 -04:00
public string Provider { get; set; }
/// <summary>
/// Gets or sets the exception.
/// </summary>
2020-08-13 20:30:43 -04:00
public Exception Exception { get; set; }
}
}