aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Models/Post/Comment/CreateCommentWebModel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Web/Models/Post/Comment/CreateCommentWebModel.cs')
-rw-r--r--src/DevHive.Web/Models/Post/Comment/CreateCommentWebModel.cs13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/DevHive.Web/Models/Post/Comment/CreateCommentWebModel.cs b/src/DevHive.Web/Models/Post/Comment/CreateCommentWebModel.cs
index 3680727..85c67bf 100644
--- a/src/DevHive.Web/Models/Post/Comment/CreateCommentWebModel.cs
+++ b/src/DevHive.Web/Models/Post/Comment/CreateCommentWebModel.cs
@@ -1,6 +1,17 @@
+using System;
+using System.ComponentModel.DataAnnotations;
+using System.Diagnostics.CodeAnalysis;
+
namespace DevHive.Web.Models.Post.Comment
{
- public class CreateCommentWebModel : BaseCommentWebModel
+ public class CreateCommentWebModel
{
+ [NotNull]
+ [Required]
+ public Guid PostId { get; set; }
+
+ [NotNull]
+ [Required]
+ public string Message { get; set; }
}
}