VersionInfo.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. using System;
  2. namespace MediaBrowser.Model.Updates
  3. {
  4. /// <summary>
  5. /// Class PackageVersionInfo.
  6. /// </summary>
  7. public class VersionInfo
  8. {
  9. /// <summary>
  10. /// Gets or sets the name.
  11. /// </summary>
  12. /// <value>The name.</value>
  13. public string name { get; set; }
  14. /// <summary>
  15. /// Gets or sets the guid.
  16. /// </summary>
  17. /// <value>The guid.</value>
  18. public string guid { get; set; }
  19. /// <summary>
  20. /// Gets or sets the version.
  21. /// </summary>
  22. /// <value>The version.</value>
  23. public Version version { get; set; }
  24. /// <summary>
  25. /// Gets or sets the changelog for this version.
  26. /// </summary>
  27. /// <value>The changelog.</value>
  28. public string changelog { get; set; }
  29. /// <summary>
  30. /// Gets or sets the ABI that this version was built against.
  31. /// </summary>
  32. /// <value>The target ABI version.</value>
  33. public string targetAbi { get; set; }
  34. /// <summary>
  35. /// Gets or sets the source URL.
  36. /// </summary>
  37. /// <value>The source URL.</value>
  38. public string sourceUrl { get; set; }
  39. /// <summary>
  40. /// Gets or sets a checksum for the binary.
  41. /// </summary>
  42. /// <value>The checksum.</value>
  43. public string checksum { get; set; }
  44. /// <summary>
  45. /// Gets or sets the target filename for the downloaded binary.
  46. /// </summary>
  47. /// <value>The target filename.</value>
  48. public string filename { get; set; }
  49. }
  50. }