aboutsummaryrefslogtreecommitdiff
path: root/src/Services/DevHive.Services.Models/Rating/ReadRatingServiceModel.cs
diff options
context:
space:
mode:
authorDanail Dimitrov <danaildimitrov321@gmail.com>2021-03-03 10:55:28 +0200
committerDanail Dimitrov <danaildimitrov321@gmail.com>2021-03-03 10:55:28 +0200
commit4612913c72c3d2b4d3e28629df9f2ed97f0c29a9 (patch)
treeb90359330d542598b9cc885878409d0ce6dacc59 /src/Services/DevHive.Services.Models/Rating/ReadRatingServiceModel.cs
parent55df3e16982c18b37d9a734215be3e00f64a8e19 (diff)
downloadDevHive-4612913c72c3d2b4d3e28629df9f2ed97f0c29a9.tar
DevHive-4612913c72c3d2b4d3e28629df9f2ed97f0c29a9.tar.gz
DevHive-4612913c72c3d2b4d3e28629df9f2ed97f0c29a9.zip
Moved Rating service models outside of Post folder
Diffstat (limited to 'src/Services/DevHive.Services.Models/Rating/ReadRatingServiceModel.cs')
-rw-r--r--src/Services/DevHive.Services.Models/Rating/ReadRatingServiceModel.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Services/DevHive.Services.Models/Rating/ReadRatingServiceModel.cs b/src/Services/DevHive.Services.Models/Rating/ReadRatingServiceModel.cs
new file mode 100644
index 0000000..56a5ab0
--- /dev/null
+++ b/src/Services/DevHive.Services.Models/Rating/ReadRatingServiceModel.cs
@@ -0,0 +1,15 @@
+using System;
+
+namespace DevHive.Services.Models.Rating
+{
+ public class ReadRatingServiceModel
+ {
+ public Guid Id { get; set; }
+
+ public Guid PostId { get; set; }
+
+ public Guid UserId { get; set; }
+
+ public bool IsLike { get; set; }
+ }
+}