InstallationEventArgs.cs 303 B

1234567891011121314
  1. #pragma warning disable CS1591
  2. using System;
  3. using MediaBrowser.Model.Updates;
  4. namespace MediaBrowser.Common.Updates
  5. {
  6. public class InstallationEventArgs : EventArgs
  7. {
  8. public InstallationInfo InstallationInfo { get; set; }
  9. public VersionInfo VersionInfo { get; set; }
  10. }
  11. }