10 lines
172 B
C#
10 lines
172 B
C#
using System.Threading.Tasks;
|
|
using app.SMTP.Model;
|
|
|
|
namespace app.SMTP.Interface
|
|
{
|
|
public interface ISMTPClient
|
|
{
|
|
Task SendEmailAsync(EMail email);
|
|
}
|
|
} |