diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2021-02-05 11:38:44 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-05 11:38:44 +0900 |
| commit | 86859a3926b406f063a23c6fe5d968b9afc70fb1 (patch) | |
| tree | ed2ffdd725d2d6142ab62929255875267e637733 /MediaBrowser.Controller/Plugins/IPluginConfigurationPage.cs | |
| parent | ad203d011bb87020ac939fbd36b48166d58a9736 (diff) | |
| parent | a4e838fbf594020e9e0663e27d4aab878393c3f3 (diff) | |
Merge pull request #5010 from BaronGreenback/Remove_IPluginConfigurationPage
Removal of IPluginConfigurationPage
Diffstat (limited to 'MediaBrowser.Controller/Plugins/IPluginConfigurationPage.cs')
| -rw-r--r-- | MediaBrowser.Controller/Plugins/IPluginConfigurationPage.cs | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/MediaBrowser.Controller/Plugins/IPluginConfigurationPage.cs b/MediaBrowser.Controller/Plugins/IPluginConfigurationPage.cs deleted file mode 100644 index 93eab42cc..000000000 --- a/MediaBrowser.Controller/Plugins/IPluginConfigurationPage.cs +++ /dev/null @@ -1,51 +0,0 @@ -using System.IO; -using MediaBrowser.Common.Plugins; - -namespace MediaBrowser.Controller.Plugins -{ - /// <summary> - /// Interface IConfigurationPage. - /// </summary> - public interface IPluginConfigurationPage - { - /// <summary> - /// Gets the name. - /// </summary> - /// <value>The name.</value> - string Name { get; } - - /// <summary> - /// Gets the type of the configuration page. - /// </summary> - /// <value>The type of the configuration page.</value> - ConfigurationPageType ConfigurationPageType { get; } - - /// <summary> - /// Gets the plugin. - /// </summary> - /// <value>The plugin.</value> - IPlugin Plugin { get; } - - /// <summary> - /// Gets the HTML stream. - /// </summary> - /// <returns>Stream.</returns> - Stream GetHtmlStream(); - } - - /// <summary> - /// Enum ConfigurationPageType. - /// </summary> - public enum ConfigurationPageType - { - /// <summary> - /// The plugin configuration. - /// </summary> - PluginConfiguration, - - /// <summary> - /// The none. - /// </summary> - None - } -} |
