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