aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/PackageReviewInfo.cs
diff options
context:
space:
mode:
authorAndrew Rabert <ar@nullsum.net>2018-12-27 18:27:57 -0500
committerAndrew Rabert <ar@nullsum.net>2018-12-27 18:27:57 -0500
commita86b71899ec52c44ddc6c3018e8cc5e9d7ff4d62 (patch)
treea74f6ea4a8abfa1664a605d31d48bc38245ccf58 /MediaBrowser.Model/Entities/PackageReviewInfo.cs
parent9bac3ac616b01f67db98381feb09d34ebe821f9a (diff)
Add GPL modules
Diffstat (limited to 'MediaBrowser.Model/Entities/PackageReviewInfo.cs')
-rw-r--r--MediaBrowser.Model/Entities/PackageReviewInfo.cs38
1 files changed, 38 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/PackageReviewInfo.cs b/MediaBrowser.Model/Entities/PackageReviewInfo.cs
new file mode 100644
index 000000000..52500a41e
--- /dev/null
+++ b/MediaBrowser.Model/Entities/PackageReviewInfo.cs
@@ -0,0 +1,38 @@
+using System;
+
+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; }
+
+ /// <summary>
+ /// Time of review
+ /// </summary>
+ public DateTime timestamp { get; set; }
+
+ }
+}