PluginInstallationCancelledEventArgs.cs 642 B

12345678910111213141516171819
  1. using Jellyfin.Data.Events;
  2. using MediaBrowser.Model.Updates;
  3. namespace MediaBrowser.Controller.Events.Updates
  4. {
  5. /// <summary>
  6. /// An event that occurs when a plugin installation is cancelled.
  7. /// </summary>
  8. public class PluginInstallationCancelledEventArgs : GenericEventArgs<InstallationInfo>
  9. {
  10. /// <summary>
  11. /// Initializes a new instance of the <see cref="PluginInstallationCancelledEventArgs"/> class.
  12. /// </summary>
  13. /// <param name="arg">The installation info.</param>
  14. public PluginInstallationCancelledEventArgs(InstallationInfo arg) : base(arg)
  15. {
  16. }
  17. }
  18. }