6 lines
149 B
C#
6 lines
149 B
C#
namespace MotoresArgentinosV2.Core.Interfaces;
|
|
|
|
public interface IEmailService
|
|
{
|
|
Task SendEmailAsync(string to, string subject, string htmlBody);
|
|
} |