Files
met08thftirstratus/Adaptation/Eaf/Core/Smtp/ISmtp.cs
2022-02-14 18:41:13 -07:00

6 lines
103 B
C#

namespace Adaptation.Eaf.Core.Smtp;
public interface ISmtp
{
void Send(EmailMessage message);
}