aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Models/Post/Comment/ReadCommentWebModel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Web/Models/Post/Comment/ReadCommentWebModel.cs')
-rw-r--r--src/DevHive.Web/Models/Post/Comment/ReadCommentWebModel.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/DevHive.Web/Models/Post/Comment/ReadCommentWebModel.cs b/src/DevHive.Web/Models/Post/Comment/ReadCommentWebModel.cs
new file mode 100644
index 0000000..2c4a367
--- /dev/null
+++ b/src/DevHive.Web/Models/Post/Comment/ReadCommentWebModel.cs
@@ -0,0 +1,19 @@
+using System;
+
+namespace DevHive.Web.Models.Post.Comment
+{
+ public class ReadCommentWebModel
+ {
+ public Guid PostId { get; set; }
+
+ public string IssuerFirstName { get; set; }
+
+ public string IssuerLastName { get; set; }
+
+ public string IssuerUsername { get; set; }
+
+ public string Message { get; set; }
+
+ public DateTime TimeCreated { get; set; }
+ }
+}