aboutsummaryrefslogtreecommitdiff
path: root/src/Web/DevHive.Web.Models/Post/Rating/ReadPostRatingWebModel.cs
blob: a551fb83a193ac056ab24790ace736d8e2d09ad2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

namespace DevHive.Web.Models.Post.Rating
{
	public class ReadPostRatingWebModel
	{
		public Guid Id { get; set; }

		public Guid PostId { get; set; }

		public int Likes { get; set; }

		public int Dislikes { get; set; }
	}
}