using System; namespace MediaBrowser.Model.Entities { public class PackageReviewInfo { /// /// The package id (database key) for this review /// public int id { get; set; } /// /// The rating value /// public int rating { get; set; } /// /// Whether or not this review recommends this item /// public bool recommend { get; set; } /// /// A short description of the review /// public string title { get; set; } /// /// A full review /// public string review { get; set; } /// /// Time of review /// public DateTime timestamp { get; set; } } }