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