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

namespace DevHive.Services.Models.Post.Rating
{
	public class ReadPostRatingServiceModel
	{
		public Guid Id { get; set; }

		public Guid PostId { get; set; }

		public int Likes { get; set; }

		public int Dislikes { get; set; }
	}
}