11 lines
198 B
C#
11 lines
198 B
C#
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Yavsc.Services
|
|
{
|
|
public interface ISmsSender
|
|
{
|
|
Task SendSmsAsync(TwilioSettings settings, string number, string message);
|
|
}
|
|
}
|