1234567891011121314151617181920212223242526272829303132 |
- using MediaBrowser.Common.Plugins;
- using MediaBrowser.Model.Plugins;
- using System;
- using System.ComponentModel.Composition;
- namespace MediaBrowser.Plugins.MpcHc
- {
- /// <summary>
- /// Class Plugin
- /// </summary>
- [Export(typeof(IPlugin))]
- public class Plugin : BaseUiPlugin<BasePluginConfiguration>
- {
- /// <summary>
- /// Gets the name of the plugin
- /// </summary>
- /// <value>The name.</value>
- public override string Name
- {
- get { return "MPC-HC Integration"; }
- }
- /// <summary>
- /// Gets the minimum required UI version.
- /// </summary>
- /// <value>The minimum required UI version.</value>
- public override Version MinimumRequiredUIVersion
- {
- get { return new Version("2.9.4782.23738"); }
- }
- }
- }
|