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:
commit
e389d80cac
1 changed files with 15 additions and 0 deletions
15
Plugin.cs
Normal file
15
Plugin.cs
Normal 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"; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue