Taylohtio/GeneralApi/GeneralApi.Core/Services/IEmailService.cs

8 lines
155 B
C#

namespace Taloyhtio.GeneralApi.Core.Services
{
public interface IEmailService
{
void Send(string to, string subj, string body);
}
}