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

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

		public string NewMessage { get; set; }
	}
}