InstallationFailedEventArgs.cs 237 B

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