diff options
Diffstat (limited to 'src/Data/DevHive.Data/Interfaces/IMessageRepository.cs')
| -rw-r--r-- | src/Data/DevHive.Data/Interfaces/IMessageRepository.cs | 10 |
1 files changed, 10 insertions, 0 deletions
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> + { + + } +} |
