diff options
| author | Bond-009 <bond.009@outlook.com> | 2020-06-22 15:23:35 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-22 15:23:35 +0200 |
| commit | 464066f362a475aac46ce8162360d8d2cbe86b15 (patch) | |
| tree | 2e56a5e8585714de8f71d989c436a0fa4226a7b2 /MediaBrowser.Model/Plugins | |
| parent | a3bc82727a0213c8deb018fe8288e0ff10ef16b3 (diff) | |
| parent | 0bab57ebbcbd39d5479e3df6b37bd41b340640e5 (diff) | |
Merge pull request #3411 from neilsb/system-plugin-removal
Prevent system plugins from being uninstalled
Diffstat (limited to 'MediaBrowser.Model/Plugins')
| -rw-r--r-- | MediaBrowser.Model/Plugins/PluginInfo.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Plugins/PluginInfo.cs b/MediaBrowser.Model/Plugins/PluginInfo.cs index c13f1a89f1..dd215192f9 100644 --- a/MediaBrowser.Model/Plugins/PluginInfo.cs +++ b/MediaBrowser.Model/Plugins/PluginInfo.cs @@ -35,6 +35,12 @@ namespace MediaBrowser.Model.Plugins /// </summary> /// <value>The unique id.</value> public string Id { get; set; } + + /// <summary> + /// Gets or sets a value indicating whether the plugin can be uninstalled. + /// </summary> + public bool CanUninstall { get; set; } + /// <summary> /// Gets or sets the image URL. /// </summary> |
