2014-04-30 20:24:55 -07:00
|
|
|
|
using MediaBrowser.Controller.Plugins;
|
2013-03-17 09:52:32 -07:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.WebDashboard.Api
|
|
|
|
|
{
|
|
|
|
|
public class ConfigurationPageInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the name.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name.</value>
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the type of the configuration page.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The type of the configuration page.</value>
|
|
|
|
|
public ConfigurationPageType ConfigurationPageType { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the plugin id.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The plugin id.</value>
|
2013-04-13 14:15:30 -07:00
|
|
|
|
public string PluginId { get; set; }
|
2013-03-17 09:52:32 -07:00
|
|
|
|
|
|
|
|
|
public ConfigurationPageInfo(IPluginConfigurationPage page)
|
|
|
|
|
{
|
|
|
|
|
Name = page.Name;
|
|
|
|
|
ConfigurationPageType = page.ConfigurationPageType;
|
2015-03-08 10:58:45 -07:00
|
|
|
|
|
|
|
|
|
// Don't use "N" because it needs to match Plugin.Id
|
|
|
|
|
PluginId = page.Plugin.Id.ToString();
|
2013-03-17 09:52:32 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|