aboutsummaryrefslogtreecommitdiff
path: root/src/Web/DevHive.Web.Models/Post/ReadPostWebModel.cs
blob: 3ae93aadea4cd0c5b37b8bdcc9ccc8e633bcfb71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using System.Collections.Generic;
using DevHive.Common.Models.Misc;

namespace DevHive.Web.Models.Post
{
	public class ReadPostWebModel
	{
		public Guid PostId { get; set; }

		public string CreatorFirstName { get; set; }

		public string CreatorLastName { get; set; }

		public string CreatorUsername { get; set; }

		public string Message { get; set; }

		public DateTime TimeCreated { get; set; }

		public List<IdModel> Comments { get; set; }

		public List<string> FileUrls { get; set; }
	}
}