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

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

		public Guid PostId { get; set; }

		public Post Post { get; set; }

		public int Rate { get; set; }
	}
}