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

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

		public string NewMessage { get; set; }
	}
}