kreta/Kreta.Job.Tasks.Core/IEmailJob.cs
2024-03-13 00:33:46 +01:00

14 lines
365 B
C#

namespace Kreta.Job.Tasks.Core
{
using System.Collections.Generic;
using System.Threading.Tasks;
using Hangfire;
using Kreta.Job.Tasks.Core.Models;
public interface IEmailJob
{
[AutomaticRetry(Attempts = 5)]
Task SendMailAsync(EmailModel emailModel);
void SendMailMessages(List<EmailModel> emailJobList);
}
}