aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Models/Comment/CreateCommentServiceModel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Services/Models/Comment/CreateCommentServiceModel.cs')
-rw-r--r--src/DevHive.Services/Models/Comment/CreateCommentServiceModel.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/DevHive.Services/Models/Comment/CreateCommentServiceModel.cs b/src/DevHive.Services/Models/Comment/CreateCommentServiceModel.cs
new file mode 100644
index 0000000..30e919b
--- /dev/null
+++ b/src/DevHive.Services/Models/Comment/CreateCommentServiceModel.cs
@@ -0,0 +1,13 @@
+using System;
+
+namespace DevHive.Services.Models.Comment
+{
+ public class CreateCommentServiceModel
+ {
+ public Guid PostId { get; set; }
+
+ public Guid CreatorId { get; set; }
+
+ public string Message { get; set; }
+ }
+}