mirror of
https://github.com/jcreek/aspnetcore5-with-postgres-identity-serilog-elasticsearch.git
synced 2026-07-13 02:43:45 +00:00
15 lines
286 B
C#
15 lines
286 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace My.ProjectName.Services.EmailService
|
|
{
|
|
public interface IEmailSender
|
|
{
|
|
void SendEmail(Message message);
|
|
|
|
Task SendEmailAsync(Message message);
|
|
}
|
|
}
|