Forum-Inzynieria1/Trunk/Server/Forum/Forum.DataAccessLayer/Services/SmsService.cs

15 lines
361 B
C#
Raw Normal View History

2018-12-18 15:42:39 +01:00
using System.Threading.Tasks;
2018-12-19 12:55:35 +01:00
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);
}
}
}