aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Models/Post/Comment/UpdateCommentServiceModel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Services/Models/Post/Comment/UpdateCommentServiceModel.cs')
-rw-r--r--src/DevHive.Services/Models/Post/Comment/UpdateCommentServiceModel.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/DevHive.Services/Models/Post/Comment/UpdateCommentServiceModel.cs b/src/DevHive.Services/Models/Post/Comment/UpdateCommentServiceModel.cs
deleted file mode 100644
index 3827d4d..0000000
--- a/src/DevHive.Services/Models/Post/Comment/UpdateCommentServiceModel.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using System;
-
-namespace DevHive.Services.Models.Post.Comment
-{
- public class UpdateCommentServiceModel
- {
- public Guid CreatorId { get; set; }
-
- public Guid CommentId { get; set; }
-
- public Guid PostId { get; set; }
-
- public string NewMessage { get; set; }
- }
-}