aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Models/Post/Comment/ReadCommentWebModel.cs
blob: 2c4a367f88d02f0c83c30662727e97141220e18c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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; }
	}
}