aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Plugin.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Api/Plugin.cs')
-rw-r--r--MediaBrowser.Api/Plugin.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/MediaBrowser.Api/Plugin.cs b/MediaBrowser.Api/Plugin.cs
new file mode 100644
index 000000000..8def96da8
--- /dev/null
+++ b/MediaBrowser.Api/Plugin.cs
@@ -0,0 +1,14 @@
+using MediaBrowser.Common.Plugins;
+using System.ComponentModel.Composition;
+
+namespace MediaBrowser.Api
+{
+ [Export(typeof(BasePlugin))]
+ public class Plugin : BasePlugin
+ {
+ public override string Name
+ {
+ get { return "Media Browser API"; }
+ }
+ }
+}