InstallationEventArgs.cs 592 B

1234567891011121314151617181920212223
  1. #nullable disable
  2. using System;
  3. using MediaBrowser.Model.Updates;
  4. namespace MediaBrowser.Common.Updates
  5. {
  6. /// <summary>
  7. /// Defines the <see cref="InstallationEventArgs" />.
  8. /// </summary>
  9. public class InstallationEventArgs : EventArgs
  10. {
  11. /// <summary>
  12. /// Gets or sets the <see cref="InstallationInfo"/>.
  13. /// </summary>
  14. public InstallationInfo InstallationInfo { get; set; }
  15. /// <summary>
  16. /// Gets or sets the <see cref="VersionInfo"/>.
  17. /// </summary>
  18. public VersionInfo VersionInfo { get; set; }
  19. }
  20. }