InstallationFailedEventArgs.cs 187 B

123456789
  1. using System;
  2. namespace MediaBrowser.Common.Updates
  3. {
  4. public class InstallationFailedEventArgs : InstallationEventArgs
  5. {
  6. public Exception Exception { get; set; }
  7. }
  8. }