jellyfin/MediaBrowser.Controller/Plugins/IPluginConfigurationPage.cs

52 lines
1.2 KiB
C#
Raw Normal View History

using System.IO;
using MediaBrowser.Common.Plugins;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Controller.Plugins
{
/// <summary>
/// Interface IConfigurationPage.
2018-12-27 18:27:57 -05:00
/// </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.
2018-12-27 18:27:57 -05:00
/// </summary>
public enum ConfigurationPageType
{
/// <summary>
/// The plugin configuration.
2018-12-27 18:27:57 -05:00
/// </summary>
PluginConfiguration,
2018-12-27 18:27:57 -05:00
/// <summary>
/// The none.
2018-12-27 18:27:57 -05:00
/// </summary>
None
}
}