// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Common.Updates { #nullable disable using System; using MediaBrowser.Model.Updates; /// /// Defines the . /// public class InstallationEventArgs : EventArgs { /// /// Gets or sets the . /// public InstallationInfo InstallationInfo { get; set; } /// /// Gets or sets the . /// public VersionInfo VersionInfo { get; set; } } }