Files

6 lines
149 B
C#
Raw Permalink Normal View History

2026-01-29 13:43:44 -03:00
namespace MotoresArgentinosV2.Core.Interfaces;
public interface IEmailService
{
Task SendEmailAsync(string to, string subject, string htmlBody);
}