using System;
namespace MediaBrowser.Model.Updates
{
    /// 
    /// Class PackageVersionInfo.
    /// 
    public class VersionInfo
    {
        /// 
        /// Gets or sets the name.
        /// 
        /// The name.
        public string name { get; set; }
        /// 
        /// Gets or sets the guid.
        /// 
        /// The guid.
        public string guid { get; set; }
        /// 
        /// Gets or sets the version.
        /// 
        /// The version.
        public Version version { get; set; }
        /// 
        /// Gets or sets the changelog for this version.
        /// 
        /// The changelog.
        public string changelog { get; set; }
        /// 
        /// Gets or sets the ABI that this version was built against.
        /// 
        /// The target ABI version.
        public string targetAbi { get; set; }
        /// 
        /// Gets or sets the source URL.
        /// 
        /// The source URL.
        public string sourceUrl { get; set; }
        /// 
        /// Gets or sets a checksum for the binary.
        /// 
        /// The checksum.
        public string checksum { get; set; }
        /// 
        /// Gets or sets the target filename for the downloaded binary.
        /// 
        /// The target filename.
        public string filename { get; set; }
    }
}