using System; namespace MediaBrowser.Model.Updates { /// /// Class InstallationInfo. /// public class InstallationInfo { /// /// Gets or sets the guid. /// /// The guid. public Guid Guid { get; set; } /// /// Gets or sets the name. /// /// The name. public string Name { 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 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; } } }