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

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