aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Models/Post/Comment/CommentWebModel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Web/Models/Post/Comment/CommentWebModel.cs')
-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
+}