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

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