PackageReviewInfo.cs 1018 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. using System;
  4. namespace MediaBrowser.Model.Entities
  5. {
  6. public class PackageReviewInfo
  7. {
  8. /// <summary>
  9. /// Gets or sets the package id (database key) for this review.
  10. /// </summary>
  11. public int id { get; set; }
  12. /// <summary>
  13. /// Gets or sets the rating value.
  14. /// </summary>
  15. public int rating { get; set; }
  16. /// <summary>
  17. /// Gets or sets whether or not this review recommends this item.
  18. /// </summary>
  19. public bool recommend { get; set; }
  20. /// <summary>
  21. /// Gets or sets a short description of the review.
  22. /// </summary>
  23. public string title { get; set; }
  24. /// <summary>
  25. /// Gets or sets the full review.
  26. /// </summary>
  27. public string review { get; set; }
  28. /// <summary>
  29. /// Gets or sets the time of review.
  30. /// </summary>
  31. public DateTime timestamp { get; set; }
  32. }
  33. }