jellyfin-server/MediaBrowser.Api/Plugin.cs

16 lines
346 B
C#
Raw Normal View History

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