isn/Interfaces/IMailer.cs

10 lines
191 B
C#
Raw Normal View History

2021-04-25 12:12:50 +01:00
using System.Threading.Tasks;
namespace nuget_host.Interfaces
{
public interface IMailer
{
Task SendMailAsync(string name, string email, string subjet, string body);
}
}