yavsc/Yavsc.Server/Interfaces/ISmsSender.cs

10 lines
188 B
C#
Raw Normal View History

2018-03-26 19:27:29 +02:00
using System.Threading.Tasks;
namespace Yavsc.Services
{
public interface ISmsSender
{
Task SendSmsAsync(TwilioSettings settings, string number, string message);
}
}