aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Models/Post/Comment/CreateCommentServiceModel.cs
diff options
context:
space:
mode:
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; }
}
}