diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-24 20:58:56 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-24 20:58:56 -0400 |
| commit | 2d5f8a3edf2a4ba1c88e12f0b980f4aa223a27b5 (patch) | |
| tree | ec2e3ca449cda5b974b996ba6398bfc74b48e024 /MediaBrowser.Controller/Entities | |
| parent | 9fb1e8c00fcb47f1be0d3d77cc1cf644323dcf24 (diff) | |
adding stubs for rotten tomatoes
Diffstat (limited to 'MediaBrowser.Controller/Entities')
| -rw-r--r-- | MediaBrowser.Controller/Entities/BaseItem.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs index c478151b4..83690c243 100644 --- a/MediaBrowser.Controller/Entities/BaseItem.cs +++ b/MediaBrowser.Controller/Entities/BaseItem.cs @@ -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> @@ -588,6 +589,18 @@ namespace MediaBrowser.Controller.Entities 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> /// <value>The community rating.</value> @@ -623,6 +636,12 @@ namespace MediaBrowser.Controller.Entities 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> private List<Video> _localTrailers; |
