InstallationEventArgs.cs 407 B

1234567891011121314151617
  1. using MediaBrowser.Model.Updates;
  2. using System;
  3. namespace MediaBrowser.Common.Updates
  4. {
  5. public class InstallationEventArgs
  6. {
  7. public InstallationInfo InstallationInfo { get; set; }
  8. public PackageVersionInfo PackageVersionInfo { get; set; }
  9. }
  10. public class InstallationFailedEventArgs : InstallationEventArgs
  11. {
  12. public Exception Exception { get; set; }
  13. }
  14. }