aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data.Models/Comment.cs
blob: 10a3aafdd247d3bb92c70ac929421d004022cd13 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using DevHive.Data.Models.Interfaces;

namespace DevHive.Data.Models
{
	public class Comment : IComment
	{
		public Guid Id { get; set; }

		// public Guid PostId { get; set; }
		public Post Post { get; set; }

		// public Guid CreatorId { get; set; }
		public User Creator { get; set; }

		public string Message { get; set; }

		public DateTime TimeCreated { get; set; }
	}
}