Files
RavenDB.Identity/Sample/Services/IEmailSender.cs
T
2017-08-23 14:54:04 -05:00

13 lines
264 B
C#

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