aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Subtitles/SubtitleResponse.cs
blob: b8ba35a5fe5832c1c192213f83fe31e115886cc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System.IO;

namespace MediaBrowser.Controller.Subtitles
{
    public class SubtitleResponse
    {
        public string Language { get; set; }
        public string Format { get; set; }
        public bool IsForced { get; set; }
        public Stream Stream { get; set; }
    }
}