aboutsummaryrefslogtreecommitdiff
path: root/src/Web/DevHive.Web.Models/Comment/CreateCommentWebModel.cs
blob: 8b2bf8d92027c20cefd740269bf956768699ca52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.ComponentModel.DataAnnotations;
using System.Diagnostics.CodeAnalysis;

namespace DevHive.Web.Models.Comment
{
	public class CreateCommentWebModel
	{
		[NotNull]
		[Required]
		public Guid PostId { get; set; }

		[NotNull]
		[Required]
		public string Message { get; set; }
	}
}