// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Controller.Events.Updates { using Jellyfin.Data.Events; using MediaBrowser.Model.Updates; /// /// An event that occurs when a plugin is installed. /// public class PluginInstalledEventArgs : GenericEventArgs { /// /// Initializes a new instance of the class. /// /// The installation info. public PluginInstalledEventArgs(InstallationInfo arg) : base(arg) { } } }