aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data.Models/Interfaces/IRating.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Data/DevHive.Data.Models/Interfaces/IRating.cs')
-rw-r--r--src/Data/DevHive.Data.Models/Interfaces/IRating.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/Data/DevHive.Data.Models/Interfaces/IRating.cs b/src/Data/DevHive.Data.Models/Interfaces/IRating.cs
deleted file mode 100644
index f04f823..0000000
--- a/src/Data/DevHive.Data.Models/Interfaces/IRating.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-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; }
- }
-}