SubtitleOptions.cs 806 B

12345678910111213141516171819202122232425
  1. namespace MediaBrowser.Model.Providers
  2. {
  3. public class SubtitleOptions
  4. {
  5. public bool SkipIfEmbeddedSubtitlesPresent { 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 bool RequirePerfectMatch { get; set; }
  14. public SubtitleOptions()
  15. {
  16. DownloadLanguages = new string[] { };
  17. SkipIfAudioTrackMatches = true;
  18. RequirePerfectMatch = true;
  19. }
  20. }
  21. }