diff options
| author | David <daullmer@gmail.com> | 2020-12-28 23:41:46 +0100 |
|---|---|---|
| committer | David <daullmer@gmail.com> | 2020-12-28 23:41:46 +0100 |
| commit | 9e0f4257838ca79b0babe7bbb62ae2a79797fc26 (patch) | |
| tree | 609e17c011b92d11226671c75d240d6f8a5a3317 | |
| parent | 21fd124bcaabcc1c01d58757ed54b5fe09273c36 (diff) | |
Make RootObject and SeasonRootObject internal again
| -rw-r--r-- | MediaBrowser.Providers/Plugins/Omdb/OmdbProvider.cs | 4 | ||||
| -rw-r--r-- | MediaBrowser.Providers/Properties/AssemblyInfo.cs | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/MediaBrowser.Providers/Plugins/Omdb/OmdbProvider.cs b/MediaBrowser.Providers/Plugins/Omdb/OmdbProvider.cs index 25371e27e..2372e3183 100644 --- a/MediaBrowser.Providers/Plugins/Omdb/OmdbProvider.cs +++ b/MediaBrowser.Providers/Plugins/Omdb/OmdbProvider.cs @@ -471,7 +471,7 @@ namespace MediaBrowser.Providers.Plugins.Omdb return string.Equals(lang, "en", StringComparison.OrdinalIgnoreCase); } - public class SeasonRootObject + internal class SeasonRootObject { public string Title { get; set; } @@ -486,7 +486,7 @@ namespace MediaBrowser.Providers.Plugins.Omdb public string Response { get; set; } } - public class RootObject + internal class RootObject { public string Title { get; set; } diff --git a/MediaBrowser.Providers/Properties/AssemblyInfo.cs b/MediaBrowser.Providers/Properties/AssemblyInfo.cs index f1c46899c..fe4749c79 100644 --- a/MediaBrowser.Providers/Properties/AssemblyInfo.cs +++ b/MediaBrowser.Providers/Properties/AssemblyInfo.cs @@ -1,5 +1,6 @@ using System.Reflection; using System.Resources; +using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following @@ -14,6 +15,7 @@ using System.Runtime.InteropServices; [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: NeutralResourcesLanguage("en")] +[assembly: InternalsVisibleTo("Jellyfin.Common.Tests")] // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from |
