aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Plugins/PluginPageInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Plugins/PluginPageInfo.cs')
-rw-r--r--MediaBrowser.Model/Plugins/PluginPageInfo.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Plugins/PluginPageInfo.cs b/MediaBrowser.Model/Plugins/PluginPageInfo.cs
new file mode 100644
index 000000000..045a0072c
--- /dev/null
+++ b/MediaBrowser.Model/Plugins/PluginPageInfo.cs
@@ -0,0 +1,17 @@
+namespace MediaBrowser.Model.Plugins
+{
+ public class PluginPageInfo
+ {
+ public string Name { get; set; }
+
+ public string DisplayName { get; set; }
+
+ public string EmbeddedResourcePath { get; set; }
+
+ public bool EnableInMainMenu { get; set; }
+
+ public string MenuSection { get; set; }
+
+ public string MenuIcon { get; set; }
+ }
+}