VersionInfo.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 version.
  12. /// </summary>
  13. /// <value>The version.</value>
  14. public string version { get; set; }
  15. /// <summary>
  16. /// Gets or sets the changelog for this version.
  17. /// </summary>
  18. /// <value>The changelog.</value>
  19. public string changelog { get; set; }
  20. /// <summary>
  21. /// Gets or sets the ABI that this version was built against.
  22. /// </summary>
  23. /// <value>The target ABI version.</value>
  24. public string targetAbi { get; set; }
  25. /// <summary>
  26. /// Gets or sets the source URL.
  27. /// </summary>
  28. /// <value>The source URL.</value>
  29. public string sourceUrl { get; set; }
  30. /// <summary>
  31. /// Gets or sets a checksum for the binary.
  32. /// </summary>
  33. /// <value>The checksum.</value>
  34. public string checksum { get; set; }
  35. /// <summary>
  36. /// Gets or sets a timestamp of when the binary was built.
  37. /// </summary>
  38. /// <value>The timestamp.</value>
  39. public string timestamp { get; set; }
  40. }
  41. }