mirror of
https://github.com/jcreek/aspnetcore5-with-postgres-identity-serilog-elasticsearch.git
synced 2026-07-13 10:53:44 +00:00
refactor(*): Move EmailService inside the main project
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user