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

namespace DevHive.Data.Models
{
	public class Rating : IRating
	{
		public Guid Id { get; set; }

		public Post Post { get; set; }

		public int Likes { get; set; }

		public int Dislikes { get; set; }
	}
}