aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Providers/SubtitleOptions.cs
blob: fde816dd36afa5b3977182608d84f698de5cca02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using System;

namespace MediaBrowser.Model.Providers
{
    public class SubtitleOptions
    {
        public bool SkipIfEmbeddedSubtitlesPresent { get; set; }
        public bool SkipIfAudioTrackMatches { get; set; }
        public string[] DownloadLanguages { get; set; }
        public bool DownloadMovieSubtitles { get; set; }
        public bool DownloadEpisodeSubtitles { get; set; }

        public string OpenSubtitlesUsername { get; set; }
        public string OpenSubtitlesPasswordHash { get; set; }
        public bool IsOpenSubtitleVipAccount { get; set; }

        public bool RequirePerfectMatch { get; set; }

        public SubtitleOptions()
        {
            DownloadLanguages = Array.Empty<string>();

            SkipIfAudioTrackMatches = true;
            RequirePerfectMatch = true;
        }
    }
}