mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-30 04:04:21 +01:00
13 lines
259 B
C#
13 lines
259 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Services.Mails
|
|
{
|
|
public interface IEmailSender
|
|
{
|
|
void SendEmail(string email, string subject, string message);
|
|
}
|
|
}
|