aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Models/Post/Comment/CommentWebModel.cs
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2020-12-30 21:21:49 +0200
committertranstrike <transtrike@gmail.com>2020-12-30 21:21:49 +0200
commit278130d86378a6b2db6ba443631f303fb7d7e207 (patch)
tree72fa0ad4889a9f18cdd0a54992dc151784323c83 /src/DevHive.Web/Models/Post/Comment/CommentWebModel.cs
parenta96478dd52250c4f5b494c66806d5e97156c48b3 (diff)
downloadDevHive-278130d86378a6b2db6ba443631f303fb7d7e207.tar
DevHive-278130d86378a6b2db6ba443631f303fb7d7e207.tar.gz
DevHive-278130d86378a6b2db6ba443631f303fb7d7e207.zip
Implemented Posts and merged Comment to Post
Diffstat (limited to 'src/DevHive.Web/Models/Post/Comment/CommentWebModel.cs')
-rw-r--r--src/DevHive.Web/Models/Post/Comment/CommentWebModel.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/DevHive.Web/Models/Post/Comment/CommentWebModel.cs b/src/DevHive.Web/Models/Post/Comment/CommentWebModel.cs
new file mode 100644
index 0000000..2a8650a
--- /dev/null
+++ b/src/DevHive.Web/Models/Post/Comment/CommentWebModel.cs
@@ -0,0 +1,10 @@
+using System;
+
+namespace DevHive.Web.Models.Post.Comment
+{
+ public class CommentWebModel
+ {
+ public Guid IssuerId { get; set; }
+ public string Message { get; set; }
+ }
+} \ No newline at end of file