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

namespace DevHive.Data.Models.Interfaces
{
	public interface IRating : IModel
	{
		// Post Post { get; set; }

		int Rate { get; set; }

		// HashSet<User> UsersThatRated { get; set; }
	}
}