diff options
| author | Patrick Barron <barronpm@gmail.com> | 2020-08-15 18:57:46 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2020-08-15 18:57:46 -0400 |
| commit | b7ceb40d6efe083653734e6417b2f5e48b522872 (patch) | |
| tree | 2bc9981801cf64426db7a232fba238fae9fa8e08 /MediaBrowser.Controller | |
| parent | 8c9cd5f6d733bb3c49236544b818417464db3aef (diff) | |
Migrate ServerEventNotifier.OnPackageInstalling to IEventConsumer
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/Events/Updates/PluginInstallingEventArgs.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Events/Updates/PluginInstallingEventArgs.cs b/MediaBrowser.Controller/Events/Updates/PluginInstallingEventArgs.cs new file mode 100644 index 0000000000..045a600272 --- /dev/null +++ b/MediaBrowser.Controller/Events/Updates/PluginInstallingEventArgs.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 installing. + /// </summary> + public class PluginInstallingEventArgs : GenericEventArgs<InstallationInfo> + { + /// <summary> + /// Initializes a new instance of the <see cref="PluginInstallingEventArgs"/> class. + /// </summary> + /// <param name="arg">The installation info.</param> + public PluginInstallingEventArgs(InstallationInfo arg) : base(arg) + { + } + } +} |
