blob: c950697a5e392fe4514d3e97eac36ee755851f11 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System;
namespace DevHive.Data.Models
{
public class Rating
{
//if adding rating to comments change Post for intreface IRatable!
public Guid Id { get; set; }
public User User { get; set; }
public Post Post { get; set; }
public bool IsLike { get; set; }
}
}
|