From 1d2f0ea1665b6eb2d9cc3334841318a39ab41e0e Mon Sep 17 00:00:00 2001 From: transtrike Date: Fri, 19 Feb 2021 22:26:18 +0200 Subject: Revert "initial implementation of message layer" This reverts commit 1ff5502483c5ee8bab1ef0a70f61e18f6ba2399d. --- src/Data/DevHive.Data/Interfaces/IChatRepository.cs | 9 --------- src/Data/DevHive.Data/Interfaces/IMessageRepository.cs | 10 ---------- 2 files changed, 19 deletions(-) delete mode 100644 src/Data/DevHive.Data/Interfaces/IChatRepository.cs delete mode 100644 src/Data/DevHive.Data/Interfaces/IMessageRepository.cs (limited to 'src/Data/DevHive.Data/Interfaces') diff --git a/src/Data/DevHive.Data/Interfaces/IChatRepository.cs b/src/Data/DevHive.Data/Interfaces/IChatRepository.cs deleted file mode 100644 index c4faf54..0000000 --- a/src/Data/DevHive.Data/Interfaces/IChatRepository.cs +++ /dev/null @@ -1,9 +0,0 @@ -using DevHive.Data.Models; -using DevHive.Data.Repositories.Interfaces; - -namespace DevHive.Data.Interfaces -{ - public interface IChatRepository : IRepository - { - } -} diff --git a/src/Data/DevHive.Data/Interfaces/IMessageRepository.cs b/src/Data/DevHive.Data/Interfaces/IMessageRepository.cs deleted file mode 100644 index f694bc0..0000000 --- a/src/Data/DevHive.Data/Interfaces/IMessageRepository.cs +++ /dev/null @@ -1,10 +0,0 @@ -using DevHive.Data.Models; -using DevHive.Data.Repositories.Interfaces; - -namespace DevHive.Data.Interfaces -{ - public interface IMessageRepository : IRepository - { - - } -} -- cgit v1.2.3