diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-05-05 22:23:19 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-05-05 22:23:19 -0400 |
| commit | e49848b8bfcbae5870b6f2d5639cfbecbb83c084 (patch) | |
| tree | 6b22f95e873095b57a58b5c563b31d7f8d419407 /MediaBrowser.Model/Entities | |
| parent | 378beb7bad881bd369b14b89c45e53e6068a2ea7 (diff) | |
Added critic rating as a sort order
Diffstat (limited to 'MediaBrowser.Model/Entities')
| -rw-r--r-- | MediaBrowser.Model/Entities/ItemReview.cs | 8 |
1 files changed, 7 insertions, 1 deletions
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. /// </summary> /// <value>The score.</value> - public float Score { get; set; } + public float? Score { get; set; } + + /// <summary> + /// Gets or sets a value indicating whether this <see cref="ItemReview"/> is likes. + /// </summary> + /// <value><c>null</c> if [likes] contains no value, <c>true</c> if [likes]; otherwise, <c>false</c>.</value> + public bool? Likes { get; set; } /// <summary> /// Gets or sets the URL. |
