aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data/Interfaces
diff options
context:
space:
mode:
authorDanail Dimitrov <danaildimitrov321@gmail.com>2021-02-18 22:58:36 +0200
committerDanail Dimitrov <danaildimitrov321@gmail.com>2021-02-18 22:58:36 +0200
commit1ff5502483c5ee8bab1ef0a70f61e18f6ba2399d (patch)
tree1d0be161dd38aead8e62aa1aac069b5f3f89f730 /src/Data/DevHive.Data/Interfaces
parent02cf7a097c781cd0ef9e844078e873fcda5a3fcd (diff)
downloadDevHive-1ff5502483c5ee8bab1ef0a70f61e18f6ba2399d.tar
DevHive-1ff5502483c5ee8bab1ef0a70f61e18f6ba2399d.tar.gz
DevHive-1ff5502483c5ee8bab1ef0a70f61e18f6ba2399d.zip
initial implementation of message layer
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>
+ {
+
+ }
+}