btcpayserver/BTCPayServer/Services/Mails/IEmailSender.cs

13 lines
264 B
C#
Raw Normal View History

2017-09-13 15:47:34 +09:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Services.Mails
2017-09-13 15:47:34 +09:00
{
public interface IEmailSender
{
Task SendEmailAsync(string email, string subject, string message);
}
}