aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Models/Post/Comment/CommentWebModel.cs
blob: d66e5c9084f45d393e8151fcb1cb3ae470055c12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
using System;

namespace DevHive.Web.Models.Post.Comment
{
	public class CommentWebModel
	{
		public Guid IssuerId { get; set; }
		public Guid PostId { get; set; }
		public string Message { get; set; }
		public DateTime TimeCreated { get; set; }
	}
}