aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/Interfaces/Models/IRating.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Data/Interfaces/Models/IRating.cs')
-rw-r--r--src/DevHive.Data/Interfaces/Models/IRating.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/DevHive.Data/Interfaces/Models/IRating.cs b/src/DevHive.Data/Interfaces/Models/IRating.cs
new file mode 100644
index 0000000..4604a75
--- /dev/null
+++ b/src/DevHive.Data/Interfaces/Models/IRating.cs
@@ -0,0 +1,14 @@
+using DevHive.Data.Interfaces.Models;
+using DevHive.Data.Models;
+
+namespace DevHive.Data.Interfaces.Models
+{
+ public interface IRating : IModel
+ {
+ Post Post { get; set; }
+
+ int Likes { get; set; }
+
+ int Dislikes { get; set; }
+ }
+}