sozsoft-platform/api/modules/Sozsoft.MailQueue/FileGeneration/IFileGenerator.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

9 lines
190 B
C#

using Sozsoft.MailQueue.MailGeneration.Models;
namespace Sozsoft.MailQueue.FileGeneration;
public interface IFileGenerator
{
Task<byte[]> Generate(MailTemplateTableModel table);
}