using System; namespace MediaBrowser.Model.Entities { /// /// Class ItemReview /// public class ItemReview { /// /// Gets or sets the name of the reviewer. /// /// The name of the reviewer. public string ReviewerName { get; set; } /// /// Gets or sets the publisher. /// /// The publisher. public string Publisher { get; set; } /// /// Gets or sets the date. /// /// The date. public DateTime Date { get; set; } /// /// Gets or sets the score. /// /// The score. public float Score { get; set; } /// /// Gets or sets the URL. /// /// The URL. public string Url { get; set; } /// /// Gets or sets the caption. /// /// The caption. public string Caption { get; set; } /// /// Gets or sets the text. /// /// The text. public string Text { get; set; } } }