blob: 10bed3612b0880c737376c020fcebedc298b12cf (
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 virtual Post Post { get; set; }
public int Rate { get; set; }
}
}
|