diff options
| author | Neil Burrows <neil.burrows@nvable.com> | 2020-06-22 10:13:28 +0100 |
|---|---|---|
| committer | Neil Burrows <neil.burrows@nvable.com> | 2020-06-22 10:13:28 +0100 |
| commit | c20400fa40d88329b1187aed84ead66e8cae4dde (patch) | |
| tree | 68f9785d9b8aaad9956defdc36a18cd23c05f7c1 /MediaBrowser.Common/Plugins/IPlugin.cs | |
| parent | c3349038c4270c65caa46b148ef6802f083e5e19 (diff) | |
Prevent system plugins from being uninstalled
Diffstat (limited to 'MediaBrowser.Common/Plugins/IPlugin.cs')
| -rw-r--r-- | MediaBrowser.Common/Plugins/IPlugin.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Plugins/IPlugin.cs b/MediaBrowser.Common/Plugins/IPlugin.cs index d34820961..7bd37d210 100644 --- a/MediaBrowser.Common/Plugins/IPlugin.cs +++ b/MediaBrowser.Common/Plugins/IPlugin.cs @@ -41,6 +41,11 @@ namespace MediaBrowser.Common.Plugins string AssemblyFilePath { get; } /// <summary> + /// Gets a value indicating whether the plugin can be uninstalled. + /// </summary> + bool CanUninstall { get; } + + /// <summary> /// Gets the full path to the data folder, where the plugin can store any miscellaneous files needed. /// </summary> /// <value>The data folder path.</value> |
