Files
2017-11-19 18:35:40 +00:00

13 lines
269 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace MongoIdentitySample.Mvc.Services
{
public interface IEmailSender
{
Task SendEmailAsync(string email, string subject, string message);
}
}