Files
jellyfin-jellyfin-1/MediaBrowser.Api/Plugin.cs

16 lines
378 B
C#
Raw Normal View History

using MediaBrowser.Common.Plugins;
using MediaBrowser.Model.Plugins;
using System.ComponentModel.Composition;
2012-07-12 02:55:27 -04:00
namespace MediaBrowser.Api
{
[Export(typeof(BasePlugin))]
public class Plugin : BaseGenericPlugin<BasePluginConfiguration>
2012-07-12 02:55:27 -04:00
{
public override string Name
{
2012-09-04 13:43:09 -04:00
get { return "Media Browser API"; }
}
2012-07-12 02:55:27 -04:00
}
}