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