InstallationInfo.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #nullable disable
  2. using System;
  3. namespace MediaBrowser.Model.Updates
  4. {
  5. /// <summary>
  6. /// Class InstallationInfo.
  7. /// </summary>
  8. public class InstallationInfo
  9. {
  10. /// <summary>
  11. /// Gets or sets the guid.
  12. /// </summary>
  13. /// <value>The guid.</value>
  14. public Guid Guid { get; set; }
  15. /// <summary>
  16. /// Gets or sets the name.
  17. /// </summary>
  18. /// <value>The name.</value>
  19. public string Name { 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 source URL.
  32. /// </summary>
  33. /// <value>The source URL.</value>
  34. public string SourceUrl { get; set; }
  35. /// <summary>
  36. /// Gets or sets a checksum for the binary.
  37. /// </summary>
  38. /// <value>The checksum.</value>
  39. public string Checksum { get; set; }
  40. }
  41. }