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