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, 0 insertions, 14 deletions
diff --git a/src/DevHive.Data/Interfaces/Models/IRating.cs b/src/DevHive.Data/Interfaces/Models/IRating.cs
deleted file mode 100644
index d1b968f..0000000
--- a/src/DevHive.Data/Interfaces/Models/IRating.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using System.Collections.Generic;
-using DevHive.Data.Models;
-
-namespace DevHive.Data.Interfaces.Models
-{
- public interface IRating : IModel
- {
- // Post Post { get; set; }
-
- int Rate { get; set; }
-
- // HashSet<User> UsersThatRated { get; set; }
- }
-}