Continue to modularize even more components

This commit is contained in:
2021-12-28 21:52:41 -08:00
parent c1b0d88b4c
commit 81f156475d
9 changed files with 40 additions and 12 deletions

View File

@@ -0,0 +1,9 @@
using TwilioSMSReceiver.Data.Models;
namespace TwilioSMSReceiver.Common.Interfaces
{
public interface IMessageHandler
{
public Task<bool> RelaySms(SMSModel model);
}
}