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