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
LukePulverenti Luke Pulverenti luke pulverenti ad8402bae6 Added the first method to portable ApiClient
2012-09-06 21:45:24 -04:00

15 lines
379 B
C#

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