aboutsummaryrefslogtreecommitdiff
path: root/src/Web/DevHive.Web.Models/Comment/UpdateCommentWebModel.cs
blob: b5d79701f941a43b886fea2f7aca8cbe27996d34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

namespace DevHive.Web.Models.Comment
{
	public class UpdateCommentWebModel
	{
		public Guid CommentId { get; set; }

		public Guid PostId { get; set; }

		public string NewMessage { get; set; }
	}
}