aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Plugins/IUIPlugin.cs
blob: c454b4da7968de98eaddd31d1e75504478fb938f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;

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