aboutsummaryrefslogtreecommitdiff
path: root/src/Services/DevHive.Services.Models/Post/Rating/UpdateRatingServiceModel.cs
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2021-03-15 09:27:12 +0200
committertranstrike <transtrike@gmail.com>2021-03-15 09:27:12 +0200
commit0161be09312fde634865f110504884119a617d5c (patch)
tree0fa68366edcb024c054f370ecf90f5b66282aae5 /src/Services/DevHive.Services.Models/Post/Rating/UpdateRatingServiceModel.cs
parente3b5757b5a5db2f7874b0924cdd4a22b1a9e1ee2 (diff)
parentac82c773a5ec43c6a59d3d0b7665b67ac9e6bdde (diff)
downloadDevHive-0161be09312fde634865f110504884119a617d5c.tar
DevHive-0161be09312fde634865f110504884119a617d5c.tar.gz
DevHive-0161be09312fde634865f110504884119a617d5c.zip
Fixed to new() where possible and readable
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; }
- }
-}