From 1ff5502483c5ee8bab1ef0a70f61e18f6ba2399d Mon Sep 17 00:00:00 2001 From: Danail Dimitrov Date: Thu, 18 Feb 2021 22:58:36 +0200 Subject: initial implementation of message layer --- src/Data/DevHive.Data/Interfaces/IChatRepository.cs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/Data/DevHive.Data/Interfaces/IChatRepository.cs (limited to 'src/Data/DevHive.Data/Interfaces/IChatRepository.cs') 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 + { + } +} -- cgit v1.2.3