PackageVersionInfo.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. 
  2. namespace MediaBrowser.Model.Updates
  3. {
  4. /// <summary>
  5. /// Class PackageVersionInfo
  6. /// </summary>
  7. public class PackageVersionInfo
  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 STR.
  21. /// </summary>
  22. /// <value>The version STR.</value>
  23. public string versionStr { get; set; }
  24. /// <summary>
  25. /// Gets or sets the classification.
  26. /// </summary>
  27. /// <value>The classification.</value>
  28. public PackageVersionClass classification { get; set; }
  29. /// <summary>
  30. /// Gets or sets the description.
  31. /// </summary>
  32. /// <value>The description.</value>
  33. public string description { get; set; }
  34. /// <summary>
  35. /// Gets or sets the required version STR.
  36. /// </summary>
  37. /// <value>The required version STR.</value>
  38. public string requiredVersionStr { get; set; }
  39. /// <summary>
  40. /// Gets or sets the source URL.
  41. /// </summary>
  42. /// <value>The source URL.</value>
  43. public string sourceUrl { get; set; }
  44. /// <summary>
  45. /// Gets or sets the source URL.
  46. /// </summary>
  47. /// <value>The source URL.</value>
  48. public string checksum { get; set; }
  49. /// <summary>
  50. /// Gets or sets the target filename.
  51. /// </summary>
  52. /// <value>The target filename.</value>
  53. public string targetFilename { get; set; }
  54. }
  55. }