yavsc/Yavsc/Services/ISmsSender.cs

10 lines
198 B
C#
Raw Normal View History

2016-05-17 18:22:18 +02:00
using System.Threading.Tasks;
namespace Yavsc.Services
{
public interface ISmsSender
{
Task SendSmsAsync(TwilioSettings settings, string number, string message);
}
}