diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-03-04 23:29:43 -0500 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-03-04 23:29:43 -0500 |
| commit | bf95cfe2e50517df46e6f849aba58b6fed2141c7 (patch) | |
| tree | 5e6ab637c2c999895b1ed93ad93fce49253abcfb /MediaBrowser.Api/Plugin.cs | |
| parent | bf9e24502c26bc130960cebc6b1be16635070bc8 (diff) | |
removed the IsCorePlugin property
Diffstat (limited to 'MediaBrowser.Api/Plugin.cs')
| -rw-r--r-- | MediaBrowser.Api/Plugin.cs | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/MediaBrowser.Api/Plugin.cs b/MediaBrowser.Api/Plugin.cs deleted file mode 100644 index 321267b04..000000000 --- a/MediaBrowser.Api/Plugin.cs +++ /dev/null @@ -1,52 +0,0 @@ -using MediaBrowser.Common.Configuration; -using MediaBrowser.Common.Kernel; -using MediaBrowser.Common.Plugins; -using MediaBrowser.Model.Plugins; -using MediaBrowser.Model.Serialization; - -namespace MediaBrowser.Api -{ - /// <summary> - /// Class Plugin - /// </summary> - public class Plugin : BasePlugin<BasePluginConfiguration> - { - /// <summary> - /// Initializes a new instance of the <see cref="Plugin" /> class. - /// </summary> - /// <param name="appPaths">The app paths.</param> - /// <param name="xmlSerializer">The XML serializer.</param> - public Plugin(IApplicationPaths appPaths, IXmlSerializer xmlSerializer) - : base(appPaths, xmlSerializer) - { - Instance = this; - } - - /// <summary> - /// Gets the name of the plugin - /// </summary> - /// <value>The name.</value> - public override string Name - { - get { return "Web Api"; } - } - - /// <summary> - /// Gets a value indicating whether this instance is a core plugin. - /// </summary> - /// <value><c>true</c> if this instance is a core plugin; otherwise, <c>false</c>.</value> - public override bool IsCorePlugin - { - get - { - return true; - } - } - - /// <summary> - /// Gets the instance. - /// </summary> - /// <value>The instance.</value> - public static Plugin Instance { get; private set; } - } -} |
