aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Subtitles/SubtitleResponse.cs
blob: 51c29c7a247d544cb5f68af0a8f260a2033989e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#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 bool IsHearingImpaired { get; set; }

        public Stream Stream { get; set; }
    }
}