1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Removed more kernel methods and deprecated the Configuration and HtmlBrowser projects. They've both been replaced by the new WebDashboard project.

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti 2012-08-17 15:07:21 -04:00
commit e389d80cac

15
Plugin.cs Normal file
View file

@ -0,0 +1,15 @@
using System.ComponentModel.Composition;
using MediaBrowser.Common.Plugins;
using MediaBrowser.Model.Plugins;
namespace MediaBrowser.WebDashboard
{
[Export(typeof(BasePlugin))]
public class Plugin : BaseGenericPlugin<BasePluginConfiguration>
{
public override string Name
{
get { return "Dashboard"; }
}
}
}