aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/Interfaces/Models/IComment.cs
blob: 9a72da455e96e203762c7bc0fe4d90a7fa568854 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

namespace DevHive.Data.Interfaces.Models
{
	public interface IComment : IModel
	{
		Guid PostId { get; set; }

		Guid CreatorId { get; set; }

		string Message { get; set; }

		DateTime TimeCreated { get; set; }
	}
}