aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data/Interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'src/Data/DevHive.Data/Interfaces')
-rw-r--r--src/Data/DevHive.Data/Interfaces/IChatRepository.cs9
-rw-r--r--src/Data/DevHive.Data/Interfaces/IMessageRepository.cs10
2 files changed, 19 insertions, 0 deletions
diff --git a/src/Data/DevHive.Data/Interfaces/IChatRepository.cs b/src/Data/DevHive.Data/Interfaces/IChatRepository.cs
new file mode 100644
index 0000000..c4faf54
--- /dev/null
+++ b/src/Data/DevHive.Data/Interfaces/IChatRepository.cs
@@ -0,0 +1,9 @@
+using DevHive.Data.Models;
+using DevHive.Data.Repositories.Interfaces;
+
+namespace DevHive.Data.Interfaces
+{
+ public interface IChatRepository : IRepository<Chat>
+ {
+ }
+}
diff --git a/src/Data/DevHive.Data/Interfaces/IMessageRepository.cs b/src/Data/DevHive.Data/Interfaces/IMessageRepository.cs
new file mode 100644
index 0000000..f694bc0
--- /dev/null
+++ b/src/Data/DevHive.Data/Interfaces/IMessageRepository.cs
@@ -0,0 +1,10 @@
+using DevHive.Data.Models;
+using DevHive.Data.Repositories.Interfaces;
+
+namespace DevHive.Data.Interfaces
+{
+ public interface IMessageRepository : IRepository<Message>
+ {
+
+ }
+}