diff options
| author | BaronGreenback <jimcartlidge@yahoo.co.uk> | 2020-06-24 14:16:02 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-24 14:16:02 +0100 |
| commit | 2486e480976d836e9b65c9bd986a0661c3c0229b (patch) | |
| tree | cb406ee0172bd4620cfae930f2e798a0e54653e7 /MediaBrowser.Common/Plugins/IPlugin.cs | |
| parent | b5586e64f5d815f4449930dc53a61a676d0e2df4 (diff) | |
| parent | 92091f13d3da982e6fd4465101b8e58220c457e4 (diff) | |
Merge pull request #30 from jellyfin/master
Updating master
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> |
