InstallationEventArgs.cs 573 B

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