diff options
| author | Danail Dimitrov <danaildimitrov321@gmail.com> | 2021-02-19 22:17:33 +0200 |
|---|---|---|
| committer | Danail Dimitrov <danaildimitrov321@gmail.com> | 2021-02-19 22:17:33 +0200 |
| commit | ce6471578364310de31ed02e21ba5d7ae6529234 (patch) | |
| tree | 468602f05dd8e3ce05d717fb2b9252edfe4e280e /src/Data/DevHive.Data/Interfaces | |
| parent | c700c79ce22c47f4dcc49d38d7d2192c0c6cb799 (diff) | |
| parent | 1ff5502483c5ee8bab1ef0a70f61e18f6ba2399d (diff) | |
| download | DevHive-ce6471578364310de31ed02e21ba5d7ae6529234.tar DevHive-ce6471578364310de31ed02e21ba5d7ae6529234.tar.gz DevHive-ce6471578364310de31ed02e21ba5d7ae6529234.zip | |
More merges. Fuck it neshto napishi bate
Diffstat (limited to 'src/Data/DevHive.Data/Interfaces')
| -rw-r--r-- | src/Data/DevHive.Data/Interfaces/IChatRepository.cs | 9 | ||||
| -rw-r--r-- | src/Data/DevHive.Data/Interfaces/IMessageRepository.cs | 10 |
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> + { + + } +} |
