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 a value indicating whether this is likes.
///
/// null if [likes] contains no value, true if [likes]; otherwise, false.
public bool? Likes { 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; }
}
}