You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.WebDashboard/Plugin.cs

16 lines
379 B

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