10 lines
191 B
C#
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);
|
|
}
|
|
} |