2018-12-18 15:42:39 +01:00
|
|
|
|
using System.Threading.Tasks;
|
2018-12-01 22:12:59 +01:00
|
|
|
|
|
|
|
|
|
namespace Forum.DataAccessLayer.Services
|
|
|
|
|
{
|
|
|
|
|
public class SmsService : IIdentityMessageService
|
|
|
|
|
{
|
|
|
|
|
public Task SendAsync(IdentityMessage message)
|
|
|
|
|
{
|
|
|
|
|
// Plug in your SMS service here to send a text message.
|
|
|
|
|
return Task.FromResult(0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|