VersionInfo.cs 1.6 KB

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