aboutsummaryrefslogtreecommitdiff
path: root/src/Services/DevHive.Services.Models/Post/Rating/UpdateRatingServiceModel.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/Post/Rating/UpdateRatingServiceModel.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/Post/Rating/UpdateRatingServiceModel.cs')
-rw-r--r--src/Services/DevHive.Services.Models/Post/Rating/UpdateRatingServiceModel.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/Services/DevHive.Services.Models/Post/Rating/UpdateRatingServiceModel.cs b/src/Services/DevHive.Services.Models/Post/Rating/UpdateRatingServiceModel.cs
deleted file mode 100644
index 1ea8d8f..0000000
--- a/src/Services/DevHive.Services.Models/Post/Rating/UpdateRatingServiceModel.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using System;
-
-namespace DevHive.Services.Models.Post.Rating
-{
- public class UpdateRatingServiceModel
- {
- public Guid Id { get; set; }
-
- public Guid UserId { get; set; }
-
- public Guid PostId { get; set; }
-
- public bool IsLike { get; set; }
- }
-}