aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Models/Post
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2021-01-17 13:38:24 +0200
committertranstrike <transtrike@gmail.com>2021-01-17 13:38:24 +0200
commit83f63ad729d585d597bdcf0afc05b7d56344223e (patch)
treeede845ad2790fe6f6f975f3cc5d776782adecf59 /src/DevHive.Web/Models/Post
parentb4454f83c3b7d668fc8b18714a659b91576882be (diff)
downloadDevHive-83f63ad729d585d597bdcf0afc05b7d56344223e.tar
DevHive-83f63ad729d585d597bdcf0afc05b7d56344223e.tar.gz
DevHive-83f63ad729d585d597bdcf0afc05b7d56344223e.zip
Lang&Tech layers now return id on Create
Diffstat (limited to 'src/DevHive.Web/Models/Post')
-rw-r--r--src/DevHive.Web/Models/Post/Comment/CommentWebModel.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/DevHive.Web/Models/Post/Comment/CommentWebModel.cs b/src/DevHive.Web/Models/Post/Comment/CommentWebModel.cs
index 3cdc7c4..d66e5c9 100644
--- a/src/DevHive.Web/Models/Post/Comment/CommentWebModel.cs
+++ b/src/DevHive.Web/Models/Post/Comment/CommentWebModel.cs
@@ -5,7 +5,8 @@ namespace DevHive.Web.Models.Post.Comment
public class CommentWebModel
{
public Guid IssuerId { get; set; }
+ public Guid PostId { get; set; }
public string Message { get; set; }
public DateTime TimeCreated { get; set; }
}
-} \ No newline at end of file
+}