aboutsummaryrefslogtreecommitdiff
path: root/src/Services/DevHive.Services.Models/Comment/UpdateCommentServiceModel.cs
blob: 3b782005bd13d066432d52d7dce8d52b47911f49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

namespace DevHive.Services.Models.Comment
{
	public class UpdateCommentServiceModel
	{
		public Guid CreatorId { get; set; }

		public Guid CommentId { get; set; }

		public Guid PostId { get; set; }

		public string NewMessage { get; set; }
	}
}