You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
851 B
33 lines
851 B
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"); }
|
|
}
|
|
}
|
|
}
|