Files
MotoresArgentinosV2/Backend/MotoresArgentinosV2.Core/Interfaces/IEmailService.cs
2026-01-29 13:43:44 -03:00

6 lines
149 B
C#

namespace MotoresArgentinosV2.Core.Interfaces;
public interface IEmailService
{
Task SendEmailAsync(string to, string subject, string htmlBody);
}