InstallationInfo.cs 674 B

1234567891011121314151617181920212223242526272829
  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 string 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 string Version { get; set; }
  25. }
  26. }