Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
using Bit.Core.Models.Mail;
namespace Bit.Core.Services;
public interface IMailDeliveryService
{
Task SendEmailAsync(MailMessage message);
}