diff options
| author | Patrick Barron <barronpm@gmail.com> | 2020-08-14 15:22:12 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2020-08-14 15:22:12 -0400 |
| commit | 0da7c0568d61e834b8b11693ed79eee2855d4ae6 (patch) | |
| tree | 55a984da36d65d5f761f683cc397a111545c20ee /MediaBrowser.Controller/Events | |
| parent | b7f21971f43d6d9f956ff0aade31625d3995858a (diff) | |
Migrate ActivityLogEntryPoint.OnPluginUninstalled to IEventConsumer
Diffstat (limited to 'MediaBrowser.Controller/Events')
| -rw-r--r-- | MediaBrowser.Controller/Events/Updates/PluginUninstalledEventArgs.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Events/Updates/PluginUninstalledEventArgs.cs b/MediaBrowser.Controller/Events/Updates/PluginUninstalledEventArgs.cs new file mode 100644 index 000000000..7510b62b8 --- /dev/null +++ b/MediaBrowser.Controller/Events/Updates/PluginUninstalledEventArgs.cs @@ -0,0 +1,19 @@ +using Jellyfin.Data.Events; +using MediaBrowser.Common.Plugins; + +namespace MediaBrowser.Controller.Events.Updates +{ + /// <summary> + /// An event that occurs when a plugin is uninstalled. + /// </summary> + public class PluginUninstalledEventArgs : GenericEventArgs<IPlugin> + { + /// <summary> + /// Initializes a new instance of the <see cref="PluginUninstalledEventArgs"/> class. + /// </summary> + /// <param name="arg">The plugin.</param> + public PluginUninstalledEventArgs(IPlugin arg) : base(arg) + { + } + } +} |
