aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Subtitles/SubtitleResponse.cs
blob: 85b3e6fbd737264fe65d63e0f3eb6f691b8fbfe0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#nullable disable

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