aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model
diff options
context:
space:
mode:
authorKGT1 <kilian.gamn@gmx.de>2025-10-07 09:52:30 +0000
committerMBR#0001 <mbr@mbr.pw>2025-11-22 17:15:09 +0100
commit41c1c5f7bf71552b2babbd7c0066c9057c970559 (patch)
treea6be9d76bb92f9fdc81c89a6443ecd9e9bca6687 /MediaBrowser.Model
parentf1242230157282c4964de04a0d381f6c0d5c6595 (diff)
remove global subtitle configuration
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; }
- }
-}