Plugin.cs 311 B

1234567891011121314
  1. using MediaBrowser.Common.Plugins;
  2. using System.ComponentModel.Composition;
  3. namespace MediaBrowser.Api
  4. {
  5. [Export(typeof(BasePlugin))]
  6. public class Plugin : BasePlugin
  7. {
  8. public override string Name
  9. {
  10. get { return "Media Browser API"; }
  11. }
  12. }
  13. }