using Jellyfin.Data.Events;
using MediaBrowser.Model.Updates;
namespace MediaBrowser.Controller.Events.Updates
{
    /// 
    /// An event that occurs when a plugin installation is cancelled.
    /// 
    public class PluginInstallationCancelledEventArgs : GenericEventArgs
    {
        /// 
        /// Initializes a new instance of the  class.
        /// 
        /// The installation info.
        public PluginInstallationCancelledEventArgs(InstallationInfo arg) : base(arg)
        {
        }
    }
}