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

namespace DevHive.Web.Models.Comment
{
	public class CommentWebModel
	{
		public Guid UserId { get; set; }
		public string Message { get; set; }
	}
}