diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-03-01 16:22:34 -0500 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-03-01 16:22:34 -0500 |
| commit | fe3323a492a35cae736350e896afd077e13e111d (patch) | |
| tree | 2ba2cec092040571b4e1d7fa7f31bd034ac2360e /MediaBrowser.Common/Plugins/BaseUiPlugin.cs | |
| parent | 4c50301e7c774cb273cb93929ca8001c8f850b6b (diff) | |
fixes around http response caching, updated the mb icon in the dashboard, and isolated web socket events
Diffstat (limited to 'MediaBrowser.Common/Plugins/BaseUiPlugin.cs')
| -rw-r--r-- | MediaBrowser.Common/Plugins/BaseUiPlugin.cs | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/MediaBrowser.Common/Plugins/BaseUiPlugin.cs b/MediaBrowser.Common/Plugins/BaseUiPlugin.cs deleted file mode 100644 index 070f56983..000000000 --- a/MediaBrowser.Common/Plugins/BaseUiPlugin.cs +++ /dev/null @@ -1,30 +0,0 @@ -using MediaBrowser.Model.Plugins; -using System; - -namespace MediaBrowser.Common.Plugins -{ - /// <summary> - /// Represents a common base class for any plugin that has ui components - /// </summary> - public abstract class BaseUiPlugin<TConfigurationType> : BasePlugin<TConfigurationType>, IUIPlugin - where TConfigurationType : BasePluginConfiguration - { - /// <summary> - /// Returns true or false indicating if the plugin should be downloaded and run within the Ui. - /// </summary> - /// <value><c>true</c> if [download to UI]; otherwise, <c>false</c>.</value> - public sealed override bool DownloadToUi - { - get - { - return true; - } - } - - /// <summary> - /// Gets the minimum required UI version. - /// </summary> - /// <value>The minimum required UI version.</value> - public abstract Version MinimumRequiredUIVersion { get; } - } -} |
