sozsoft-platform/api/modules/Sozsoft.MailQueue/FileGeneration/IFileGenerator.cs

10 lines
190 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
using Sozsoft.MailQueue.MailGeneration.Models;
namespace Sozsoft.MailQueue.FileGeneration;
public interface IFileGenerator
{
Task<byte[]> Generate(MailTemplateTableModel table);
}