mirror of
https://github.com/bitwarden/server.git
synced 2026-02-13 04:13:42 +08: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);
|
|||
|
|
}
|
|||
|
|
}
|