aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model
diff options
context:
space:
mode:
authorKGT1 <kilian.gamn@gmx.de>2026-04-18 17:06:46 +0200
committerGitHub <noreply@github.com>2026-04-18 17:06:46 +0200
commit1d44899606110ffd7d984bd7d52b8cd57e18c273 (patch)
tree3375ef694be0de1436245b24497ecef67f0a88cd /MediaBrowser.Model
parent946ff12185289b5dc38732497bb362aab7f192fe (diff)
Remove global subtitle configuration (#14957)
Diffstat (limited to 'MediaBrowser.Model')
-rw-r--r--MediaBrowser.Model/Providers/SubtitleOptions.cs36
1 files changed, 0 insertions, 36 deletions
diff --git a/MediaBrowser.Model/Providers/SubtitleOptions.cs b/MediaBrowser.Model/Providers/SubtitleOptions.cs
deleted file mode 100644
index 6ea1e14862..0000000000
--- a/MediaBrowser.Model/Providers/SubtitleOptions.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-#nullable disable
-#pragma warning disable CS1591
-
-using System;
-
-namespace MediaBrowser.Model.Providers
-{
- public class SubtitleOptions
- {
- public SubtitleOptions()
- {
- DownloadLanguages = Array.Empty<string>();
-
- SkipIfAudioTrackMatches = true;
- RequirePerfectMatch = true;
- }
-
- 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; }
- }
-}