From e49848b8bfcbae5870b6f2d5639cfbecbb83c084 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 5 May 2013 22:23:19 -0400 Subject: Added critic rating as a sort order --- MediaBrowser.Model/Entities/ItemReview.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'MediaBrowser.Model/Entities') diff --git a/MediaBrowser.Model/Entities/ItemReview.cs b/MediaBrowser.Model/Entities/ItemReview.cs index fcd4c1c2b..3b496cce8 100644 --- a/MediaBrowser.Model/Entities/ItemReview.cs +++ b/MediaBrowser.Model/Entities/ItemReview.cs @@ -29,7 +29,13 @@ namespace MediaBrowser.Model.Entities /// Gets or sets the score. /// /// The score. - public float Score { get; set; } + 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. -- cgit v1.2.3