aboutsummaryrefslogtreecommitdiff
path: root/src/Services/DevHive.Services/Interfaces
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2021-02-19 22:26:18 +0200
committertranstrike <transtrike@gmail.com>2021-02-19 22:26:18 +0200
commit1d2f0ea1665b6eb2d9cc3334841318a39ab41e0e (patch)
tree3bbfced6792eef0fdfc11dc25ee68374ac5c1e6a /src/Services/DevHive.Services/Interfaces
parent1ff5502483c5ee8bab1ef0a70f61e18f6ba2399d (diff)
downloadDevHive-1d2f0ea1665b6eb2d9cc3334841318a39ab41e0e.tar
DevHive-1d2f0ea1665b6eb2d9cc3334841318a39ab41e0e.tar.gz
DevHive-1d2f0ea1665b6eb2d9cc3334841318a39ab41e0e.zip
Revert "initial implementation of message layer"
This reverts commit 1ff5502483c5ee8bab1ef0a70f61e18f6ba2399d.
Diffstat (limited to 'src/Services/DevHive.Services/Interfaces')
-rw-r--r--src/Services/DevHive.Services/Interfaces/IMessageService.cs13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/Services/DevHive.Services/Interfaces/IMessageService.cs b/src/Services/DevHive.Services/Interfaces/IMessageService.cs
deleted file mode 100644
index a0fd155..0000000
--- a/src/Services/DevHive.Services/Interfaces/IMessageService.cs
+++ /dev/null
@@ -1,13 +0,0 @@
-using System;
-using System.Threading.Tasks;
-using DevHive.Services.Models.Message;
-
-namespace DevHive.Services.Interfaces
-{
- public interface IMessageService
- {
- Task<Guid> CreateMessage(CreateMessageServiceModel createMessageServiceModel);
-
- Task<ReadMessageServiceModel> GetMessageById(Guid id);
- }
-}