using System;
namespace MediaBrowser.Model.Updates
{
    /// 
    /// Class InstallationInfo.
    /// 
    public class InstallationInfo
    {
        /// 
        /// Gets or sets the id.
        /// 
        /// The id.
        public Guid Id { get; set; }
        /// 
        /// Gets or sets the name.
        /// 
        /// The name.
        public string Name { get; set; }
        /// 
        /// Gets or sets the assembly guid.
        /// 
        /// The guid of the assembly.
        public string AssemblyGuid { get; set; }
        /// 
        /// Gets or sets the version.
        /// 
        /// The version.
        public string Version { get; set; }
        /// 
        /// Gets or sets the update class.
        /// 
        /// The update class.
        public PackageVersionClass UpdateClass { get; set; }
    }
}