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, 0 insertions, 13 deletions
diff --git a/src/DevHive.Services/Models/Comment/CreateCommentServiceModel.cs b/src/DevHive.Services/Models/Comment/CreateCommentServiceModel.cs
deleted file mode 100644
index 30e919b..0000000
--- a/src/DevHive.Services/Models/Comment/CreateCommentServiceModel.cs
+++ /dev/null
@@ -1,13 +0,0 @@
-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; }
- }
-}