aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Events/Updates/PluginUpdatedEventArgs.cs
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2020-08-25 16:59:35 -0400
committerGitHub <noreply@github.com>2020-08-25 16:59:35 -0400
commitcf6ef9958da4a50bd315d37792567ae51773a6a7 (patch)
tree28423f47c93d5246009bc3dd952d90162fa64e0c /MediaBrowser.Controller/Events/Updates/PluginUpdatedEventArgs.cs
parent25be1a9b20a09979146c382b0a5c2325bf3ba21f (diff)
parentb5bbbb9cefb7b360e12b44522d6494bfb4c0f848 (diff)
Merge pull request #3910 from barronpm/event-rewrite-1
Event Rewrite (Part 1)
Diffstat (limited to 'MediaBrowser.Controller/Events/Updates/PluginUpdatedEventArgs.cs')
-rw-r--r--MediaBrowser.Controller/Events/Updates/PluginUpdatedEventArgs.cs19
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)
+ {
+ }
+ }
+}