Plugin.cs 354 B

1234567891011121314
  1. using System.ComponentModel.Composition;
  2. using MediaBrowser.Common.Plugins;
  3. namespace MediaBrowser.InternetProviders
  4. {
  5. [Export(typeof(BasePlugin))]
  6. public class Plugin : BaseGenericPlugin<PluginConfiguration>
  7. {
  8. public override string Name
  9. {
  10. get { return "Internet Providers"; }
  11. }
  12. }
  13. }