mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
15 lines
347 B
C#
15 lines
347 B
C#
using MediaBrowser.Common.Plugins;
|
|
using MediaBrowser.Model.Plugins;
|
|
using System.ComponentModel.Composition;
|
|
|
|
namespace MediaBrowser.WebDashboard
|
|
{
|
|
[Export(typeof(BasePlugin))]
|
|
public class Plugin : BasePlugin
|
|
{
|
|
public override string Name
|
|
{
|
|
get { return "Dashboard"; }
|
|
}
|
|
}
|
|
}
|