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

16 lines
347 B
C#
Raw Normal View History

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"; }
}
}
}