mirror of
https://github.com/bitwarden/server.git
synced 2024-12-04 14:13:28 +01:00
11 lines
198 B
C#
11 lines
198 B
C#
|
using System.Threading.Tasks;
|
|||
|
using Bit.Core.Models.Mail;
|
|||
|
|
|||
|
namespace Bit.Core.Services
|
|||
|
{
|
|||
|
public interface IMailDeliveryService
|
|||
|
{
|
|||
|
Task SendEmailAsync(MailMessage message);
|
|||
|
}
|
|||
|
}
|