aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Models/Comment
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2020-12-30 21:21:49 +0200
committertranstrike <transtrike@gmail.com>2020-12-30 21:21:49 +0200
commit278130d86378a6b2db6ba443631f303fb7d7e207 (patch)
tree72fa0ad4889a9f18cdd0a54992dc151784323c83 /src/DevHive.Web/Models/Comment
parenta96478dd52250c4f5b494c66806d5e97156c48b3 (diff)
downloadDevHive-278130d86378a6b2db6ba443631f303fb7d7e207.tar
DevHive-278130d86378a6b2db6ba443631f303fb7d7e207.tar.gz
DevHive-278130d86378a6b2db6ba443631f303fb7d7e207.zip
Implemented Posts and merged Comment to Post
Diffstat (limited to 'src/DevHive.Web/Models/Comment')
-rw-r--r--src/DevHive.Web/Models/Comment/CommentWebModel.cs10
-rw-r--r--src/DevHive.Web/Models/Comment/GetByIdCommentWebModel.cs9
2 files changed, 0 insertions, 19 deletions
diff --git a/src/DevHive.Web/Models/Comment/CommentWebModel.cs b/src/DevHive.Web/Models/Comment/CommentWebModel.cs
deleted file mode 100644
index 37806a5..0000000
--- a/src/DevHive.Web/Models/Comment/CommentWebModel.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-using System;
-
-namespace DevHive.Web.Models.Comment
-{
- public class CommentWebModel
- {
- public Guid UserId { get; set; }
- public string Message { get; set; }
- }
-} \ No newline at end of file
diff --git a/src/DevHive.Web/Models/Comment/GetByIdCommentWebModel.cs b/src/DevHive.Web/Models/Comment/GetByIdCommentWebModel.cs
deleted file mode 100644
index 3d03348..0000000
--- a/src/DevHive.Web/Models/Comment/GetByIdCommentWebModel.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-using System;
-
-namespace DevHive.Web.Models.Comment
-{
- public class GetByIdCommentWebModel : CommentWebModel
- {
- public DateTime Date { get; set; }
- }
-} \ No newline at end of file