aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Subtitles/SubtitleResponse.cs
blob: a86b05778376977ec4c20af637cb0bdf1f5468f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma warning disable CS1591

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; }
    }
}