This repository has been archived on 2026-04-13. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
web-app-template/backend/login-counter/app.SMTP.Interface/ISMTPClient.cs
T
2022-02-20 13:43:25 +01:00

10 lines
172 B
C#

using System.Threading.Tasks;
using app.SMTP.Model;
namespace app.SMTP.Interface
{
public interface ISMTPClient
{
Task SendEmailAsync(EMail email);
}
}