diff options
| author | Eric Reed <ebr@mediabrowser3.com> | 2013-11-07 12:27:05 -0500 |
|---|---|---|
| committer | Eric Reed <ebr@mediabrowser3.com> | 2013-11-07 12:27:05 -0500 |
| commit | 63554bde5be929588e9073415ea811170264508b (patch) | |
| tree | c102098473c4f23fef9bbd1bdad6064097861704 /MediaBrowser.Model/Entities | |
| parent | 33c0b0e99c3df88906aac2f9fc2b363105bff0b1 (diff) | |
First level of ratings and reviews
Diffstat (limited to 'MediaBrowser.Model/Entities')
| -rw-r--r-- | MediaBrowser.Model/Entities/PackageReviewInfo.cs | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/PackageReviewInfo.cs b/MediaBrowser.Model/Entities/PackageReviewInfo.cs new file mode 100644 index 0000000000..9d71622c3b --- /dev/null +++ b/MediaBrowser.Model/Entities/PackageReviewInfo.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace MediaBrowser.Model.Entities +{ + public class PackageReviewInfo + { + /// <summary> + /// The package id (database key) for this review + /// </summary> + public int id { get; set; } + + /// <summary> + /// The rating value + /// </summary> + public int rating { get; set; } + + /// <summary> + /// Whether or not this review recommends this item + /// </summary> + public bool recommend { get; set; } + + /// <summary> + /// A short description of the review + /// </summary> + public string title { get; set; } + + /// <summary> + /// A full review + /// </summary> + public string review { get; set; } + + } +} |
