SubtitleOptions.cs 712 B

12345678910111213141516171819202122
  1. namespace MediaBrowser.Model.Providers
  2. {
  3. public class SubtitleOptions
  4. {
  5. public bool SkipIfGraphicalSubtitlesPresent { get; set; }
  6. public bool SkipIfAudioTrackMatches { get; set; }
  7. public string[] DownloadLanguages { get; set; }
  8. public bool DownloadMovieSubtitles { get; set; }
  9. public bool DownloadEpisodeSubtitles { get; set; }
  10. public string OpenSubtitlesUsername { get; set; }
  11. public string OpenSubtitlesPasswordHash { get; set; }
  12. public bool IsOpenSubtitleVipAccount { get; set; }
  13. public SubtitleOptions()
  14. {
  15. DownloadLanguages = new string[] { };
  16. SkipIfAudioTrackMatches = true;
  17. }
  18. }
  19. }