aboutsummaryrefslogtreecommitdiff
path: root/src/Services/DevHive.Services.Models/Post/Rating/UpdateRatingServiceModel.cs
diff options
context:
space:
mode:
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; }
- }
-}