InstallationEventArgs.cs 322 B

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