aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/Models/Comment.cs
blob: f949a427d6aef4f33ed748aad540d7e1fb91f851 (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 UserId { get; set; }
		public string Message { get; set; }
		public DateTime Date { get; set; }
	}
}