mirror of
https://github.com/farcasclaudiu/PracticeCalendar.git
synced 2026-06-22 07:01:16 +03:00
8 lines
180 B
C#
8 lines
180 B
C#
namespace PracticeCalendar.Domain.Interfaces
|
|
{
|
|
public interface IEmailSender
|
|
{
|
|
Task SendEmailAsync(string to, string from, string subject, string body);
|
|
}
|
|
}
|