diff --git a/Inflow.Domain/Intefaces/Services/IEmailSender.cs b/Inflow.Domain/Intefaces/Services/IEmailSender.cs new file mode 100644 index 0000000..1fbb7d4 --- /dev/null +++ b/Inflow.Domain/Intefaces/Services/IEmailSender.cs @@ -0,0 +1,7 @@ +namespace Inflow.Domain.Intefaces.Services +{ + public interface IEmailSender + { + Task SendEmail(string email, string subject, string massege); + } +}