Files
isn/Interfaces/IMailer.cs
2021-04-25 12:12:50 +01:00

10 lines
191 B
C#

using System.Threading.Tasks;
namespace nuget_host.Interfaces
{
public interface IMailer
{
Task SendMailAsync(string name, string email, string subjet, string body);
}
}