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

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