aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Models/Post/Comment
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Web/Models/Post/Comment')
-rw-r--r--src/DevHive.Web/Models/Post/Comment/BaseCommentWebModel.cs21
-rw-r--r--src/DevHive.Web/Models/Post/Comment/CommentWebModel.cs25
2 files changed, 0 insertions, 46 deletions
diff --git a/src/DevHive.Web/Models/Post/Comment/BaseCommentWebModel.cs b/src/DevHive.Web/Models/Post/Comment/BaseCommentWebModel.cs
deleted file mode 100644
index 9ba0b87..0000000
--- a/src/DevHive.Web/Models/Post/Comment/BaseCommentWebModel.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-using System;
-using System.ComponentModel.DataAnnotations;
-using System.Diagnostics.CodeAnalysis;
-
-namespace DevHive.Web.Models.Post.Comment
-{
- public class BaseCommentWebModel
- {
- [NotNull]
- [Required]
- public Guid PostId { get; set; }
-
- [NotNull]
- [Required]
- public Guid CommentId { get; set; }
-
- [NotNull]
- [Required]
- public string Message { get; set; }
- }
-}
diff --git a/src/DevHive.Web/Models/Post/Comment/CommentWebModel.cs b/src/DevHive.Web/Models/Post/Comment/CommentWebModel.cs
deleted file mode 100644
index 590851d..0000000
--- a/src/DevHive.Web/Models/Post/Comment/CommentWebModel.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-using System;
-using System.ComponentModel.DataAnnotations;
-using System.Diagnostics.CodeAnalysis;
-
-namespace DevHive.Web.Models.Post.Comment
-{
- public class CommentWebModel
- {
- [NotNull]
- [Required]
- public Guid IssuerId { get; set; }
-
- [NotNull]
- [Required]
- public Guid PostId { get; set; }
-
- [NotNull]
- [Required]
- public string Message { get; set; }
-
- [NotNull]
- [Required]
- public DateTime TimeCreated { get; set; }
- }
-}