aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Models/Post/Comment/CreateCommentServiceModel.cs
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2021-01-24 00:07:44 +0200
committertranstrike <transtrike@gmail.com>2021-01-24 00:07:44 +0200
commitf910a2a63cb83b35c6589591400a69c8f7f7917c (patch)
tree2e601172f734d53ab7a903426ea2d674b5048a76 /src/DevHive.Services/Models/Post/Comment/CreateCommentServiceModel.cs
parente01a81954e0fba2c4521e03a76f48a970a87994f (diff)
downloadDevHive-f910a2a63cb83b35c6589591400a69c8f7f7917c.tar
DevHive-f910a2a63cb83b35c6589591400a69c8f7f7917c.tar.gz
DevHive-f910a2a63cb83b35c6589591400a69c8f7f7917c.zip
Migrations added; CRUD over Posts&Comments successfully completed
Diffstat (limited to 'src/DevHive.Services/Models/Post/Comment/CreateCommentServiceModel.cs')
-rw-r--r--src/DevHive.Services/Models/Post/Comment/CreateCommentServiceModel.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/DevHive.Services/Models/Post/Comment/CreateCommentServiceModel.cs b/src/DevHive.Services/Models/Post/Comment/CreateCommentServiceModel.cs
index 4dfd848..8d49659 100644
--- a/src/DevHive.Services/Models/Post/Comment/CreateCommentServiceModel.cs
+++ b/src/DevHive.Services/Models/Post/Comment/CreateCommentServiceModel.cs
@@ -6,10 +6,8 @@ namespace DevHive.Services.Models.Post.Comment
{
public Guid PostId { get; set; }
- public Guid IssuerId { get; set; }
+ public Guid CreatorId { get; set; }
public string Message { get; set; }
-
- public DateTime TimeCreated { get; set; }
}
}