2
0

SubtitleOptions.cs 657 B

123456789101112131415161718192021
  1. namespace MediaBrowser.Model.Configuration
  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 SubtitleOptions()
  13. {
  14. DownloadLanguages = new string[] { };
  15. SkipIfAudioTrackMatches = true;
  16. }
  17. }
  18. }