jellyfin/MediaBrowser.InternetProviders/Plugin.cs

15 lines
354 B
C#
Raw Normal View History

using System.ComponentModel.Composition;
using MediaBrowser.Common.Plugins;
2012-07-12 08:55:27 +02:00
namespace MediaBrowser.InternetProviders
{
[Export(typeof(BasePlugin))]
public class Plugin : BaseGenericPlugin<PluginConfiguration>
2012-07-12 08:55:27 +02:00
{
public override string Name
{
get { return "Internet Providers"; }
}
2012-07-12 08:55:27 +02:00
}
}