btcpayserver/BTCPayServer/Services/Mails/IEmailSender.cs

13 lines
264 B
C#
Raw Normal View History

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