aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Subtitles/SubtitleDownloadFailureEventArgs.cs
blob: 7687bf5b6d4abd37ec1bdb88dd73e9f85b5a6e33 (plain)
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; }
    }
}