Plugin.cs 848 B

1234567891011121314151617181920212223242526272829303132
  1. using MediaBrowser.Common.Plugins;
  2. using MediaBrowser.Model.Plugins;
  3. using System;
  4. using System.ComponentModel.Composition;
  5. namespace MediaBrowser.Plugins.Tmt5
  6. {
  7. /// <summary>
  8. /// Class Plugin
  9. /// </summary>
  10. [Export(typeof(IPlugin))]
  11. public class Plugin : BaseUiPlugin<BasePluginConfiguration>
  12. {
  13. /// <summary>
  14. /// Gets the name of the plugin
  15. /// </summary>
  16. /// <value>The name.</value>
  17. public override string Name
  18. {
  19. get { return "TMT5 Integration"; }
  20. }
  21. /// <summary>
  22. /// Gets the minimum required UI version.
  23. /// </summary>
  24. /// <value>The minimum required UI version.</value>
  25. public override Version MinimumRequiredUIVersion
  26. {
  27. get { return new Version("2.9.4782.23738"); }
  28. }
  29. }
  30. }