2014-08-10 15:13:17 -07:00
|
|
|
namespace MediaBrowser.Model.Providers
|
2014-05-08 13:26:20 -07:00
|
|
|
{
|
|
|
|
public class SubtitleOptions
|
|
|
|
{
|
|
|
|
public bool SkipIfGraphicalSubtitlesPresent { 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; }
|
2014-07-10 21:27:46 -07:00
|
|
|
public bool IsOpenSubtitleVipAccount { get; set; }
|
2014-05-08 13:26:20 -07:00
|
|
|
|
|
|
|
public SubtitleOptions()
|
|
|
|
{
|
|
|
|
DownloadLanguages = new string[] { };
|
|
|
|
|
|
|
|
SkipIfAudioTrackMatches = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|