19 lines
447 B
C#
19 lines
447 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNet.Identity;
|
|
|
|
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);
|
|
}
|
|
}
|
|
}
|