#nullable disable #pragma warning disable CS1591 using System; namespace MediaBrowser.Model.Entities { public class PackageReviewInfo { /// /// Gets or sets the package id (database key) for this review. /// public int id { get; set; } /// /// Gets or sets the rating value. /// public int rating { get; set; } /// /// Gets or sets whether or not this review recommends this item. /// public bool recommend { get; set; } /// /// Gets or sets a short description of the review. /// public string title { get; set; } /// /// Gets or sets the full review. /// public string review { get; set; } /// /// Gets or sets the time of review. /// public DateTime timestamp { get; set; } } }