Files
isn/src/nuget-host/Interfaces/IMailer.cs
Paul Schneider 6a59f776d5 refact
2021-05-09 13:45:55 +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);
}
}