From 2d5f8a3edf2a4ba1c88e12f0b980f4aa223a27b5 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 24 Apr 2013 20:58:56 -0400 Subject: adding stubs for rotten tomatoes --- MediaBrowser.Model/Entities/ItemReview.cs | 52 ++++++++++++++++++++++++ MediaBrowser.Model/Entities/MetadataProviders.cs | 6 ++- 2 files changed, 57 insertions(+), 1 deletion(-) create mode 100644 MediaBrowser.Model/Entities/ItemReview.cs (limited to 'MediaBrowser.Model/Entities') diff --git a/MediaBrowser.Model/Entities/ItemReview.cs b/MediaBrowser.Model/Entities/ItemReview.cs new file mode 100644 index 0000000000..fcd4c1c2bf --- /dev/null +++ b/MediaBrowser.Model/Entities/ItemReview.cs @@ -0,0 +1,52 @@ +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; } + } +} diff --git a/MediaBrowser.Model/Entities/MetadataProviders.cs b/MediaBrowser.Model/Entities/MetadataProviders.cs index 28e4b1646a..15648604fd 100644 --- a/MediaBrowser.Model/Entities/MetadataProviders.cs +++ b/MediaBrowser.Model/Entities/MetadataProviders.cs @@ -25,6 +25,10 @@ namespace MediaBrowser.Model.Entities /// /// MusicBrainz /// - Musicbrainz + Musicbrainz, + /// + /// The rotten tomatoes + /// + RottenTomatoes } } -- cgit v1.2.3