#nullable disable
using System;
using MediaBrowser.Model.Updates;
namespace MediaBrowser.Common.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; }
    }
}