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.cs9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/DevHive.Services/Models/Post/Comment/CreateCommentServiceModel.cs b/src/DevHive.Services/Models/Post/Comment/CreateCommentServiceModel.cs
index 7c00b8f..4dfd848 100644
--- a/src/DevHive.Services/Models/Post/Comment/CreateCommentServiceModel.cs
+++ b/src/DevHive.Services/Models/Post/Comment/CreateCommentServiceModel.cs
@@ -2,7 +2,14 @@ using System;
namespace DevHive.Services.Models.Post.Comment
{
- public class CreateCommentServiceModel : BaseCommentServiceModel
+ public class CreateCommentServiceModel
{
+ public Guid PostId { get; set; }
+
+ public Guid IssuerId { get; set; }
+
+ public string Message { get; set; }
+
+ public DateTime TimeCreated { get; set; }
}
}