adding stubs for rotten tomatoes

This commit is contained in:
Luke Pulverenti
2013-04-24 20:58:56 -04:00
parent 9fb1e8c00f
commit 2d5f8a3edf
6 changed files with 246 additions and 1 deletions

View File

@@ -29,6 +29,7 @@ namespace MediaBrowser.Controller.Entities
TrailerUrls = new List<string>();
Studios = new List<string>();
People = new List<PersonInfo>();
CriticReviews = new List<ItemReview>();
}
/// <summary>
@@ -587,6 +588,18 @@ namespace MediaBrowser.Controller.Entities
/// <value>The production locations.</value>
public List<string> ProductionLocations { get; set; }
/// <summary>
/// Gets or sets the critic rating.
/// </summary>
/// <value>The critic rating.</value>
public float? CriticRating { get; set; }
/// <summary>
/// Gets or sets the critic rating summary.
/// </summary>
/// <value>The critic rating summary.</value>
public string CriticRatingSummary { get; set; }
/// <summary>
/// Gets or sets the community rating.
/// </summary>
@@ -622,6 +635,12 @@ namespace MediaBrowser.Controller.Entities
/// <value>The parent index number.</value>
public int? ParentIndexNumber { get; set; }
/// <summary>
/// Gets or sets the critic reviews.
/// </summary>
/// <value>The critic reviews.</value>
public List<ItemReview> CriticReviews { get; set; }
/// <summary>
/// The _local trailers
/// </summary>