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

namespace DevHive.Web.Models.Rating
{
	public class CreateRatingWebModel
	{
		public Guid PostId { get; set; }

		public bool IsLike { get; set; }
	}
}