InstallationFailedEventArgs.cs 219 B

1234567891011
  1. #pragma warning disable CS1591
  2. using System;
  3. namespace MediaBrowser.Common.Updates
  4. {
  5. public class InstallationFailedEventArgs : InstallationEventArgs
  6. {
  7. public Exception Exception { get; set; }
  8. }
  9. }