using TwilioSMSReceiver.Data.Models;
namespace TwilioSMSReceiver.Common.Interfaces
{
///
/// The main code where we send all SMS data and translate it accordingly
///
public interface IMessageHandler
{
///
/// The main relay SMS code
///
/// Parsed model of the SMS Message
/// True if it succeeded, false if it didn't relay successfully
/// Returned if the code is loaded, but not actually implemented
/// All generic exceptions are returned here
public Task RelaySms(SMSModel model);
}
}