10 lines
276 B
C#
10 lines
276 B
C#
using StandManager.Domain.DTO;
|
|
using StandManager.Domain.Entita;
|
|
|
|
namespace StandManager.Service.Interfaces;
|
|
|
|
public interface IMailProcessor
|
|
{
|
|
MailFrom MailFrom { get; }
|
|
Task ProcessAsync(List<MailQueue> mailQueueList, EmailConfig config, HttpClient httpClient);
|
|
} |