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

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

		Post Post { get; set; }

		User User { get; set; }
	}
}