diff options
| author | Patrick Barron <barronpm@gmail.com> | 2020-08-14 15:50:17 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2020-08-14 15:50:17 -0400 |
| commit | e9244448809cb4251b341832c8fdfecde5f169ab (patch) | |
| tree | 477728faa6033f5304812076988715e16daeac2a /MediaBrowser.Controller/Events/Updates/PluginUpdatedEventArgs.cs | |
| parent | 0da7c0568d61e834b8b11693ed79eee2855d4ae6 (diff) | |
Migrate ActivityLogEntryPoint.OnPluginUpdated to IEventConsumer
Diffstat (limited to 'MediaBrowser.Controller/Events/Updates/PluginUpdatedEventArgs.cs')
| -rw-r--r-- | MediaBrowser.Controller/Events/Updates/PluginUpdatedEventArgs.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Events/Updates/PluginUpdatedEventArgs.cs b/MediaBrowser.Controller/Events/Updates/PluginUpdatedEventArgs.cs new file mode 100644 index 000000000..661ca066a --- /dev/null +++ b/MediaBrowser.Controller/Events/Updates/PluginUpdatedEventArgs.cs @@ -0,0 +1,19 @@ +using Jellyfin.Data.Events; +using MediaBrowser.Model.Updates; + +namespace MediaBrowser.Controller.Events.Updates +{ + /// <summary> + /// An event that occurs when a plugin is updated. + /// </summary> + public class PluginUpdatedEventArgs : GenericEventArgs<InstallationInfo> + { + /// <summary> + /// Initializes a new instance of the <see cref="PluginUpdatedEventArgs"/> class. + /// </summary> + /// <param name="arg">The installation info.</param> + public PluginUpdatedEventArgs(InstallationInfo arg) : base(arg) + { + } + } +} |
