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

namespace DevHive.Services.Models.Post.Rating
{
	public class ReadRatingServiceModel
	{
		public Guid PostId { get; set; }

		public int Likes { get; set; }

		public int Dislikes { get; set; }
	}
}