using System; namespace MediaBrowser.Common.Plugins { /// /// Interface IUIPlugin /// public interface IUIPlugin : IPlugin { /// /// Gets the minimum required UI version. /// /// The minimum required UI version. Version MinimumRequiredUIVersion { get; } } }