aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/Models/Comment.cs
blob: 8cf848fbc6179aa5bd78853afaa0102d35b7e8cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using System;
namespace DevHive.Data.Models
{
	public class Comment : IModel
	{
		public Guid Id { get; set; }
		public Guid IssuerId { get; set; }
		public string Message { get; set; }
		public DateTime TimeCreated { get; set; }
	}
}