mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-01-02 06:38:22 +00:00
8 lines
183 B
C#
8 lines
183 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace PodNoms.Api.Services {
|
|
public interface IMailSender {
|
|
Task<bool> SendEmail(string email, string subject, string message);
|
|
}
|
|
}
|