AuthorBuddy/Services/IExportService.cs
2026-05-31 19:31:27 +02:00

15 lines
244 B
C#

namespace AuthorBuddy.Web.Services;
public enum ExportFormat
{
Html,
Markdown,
Zip,
Docx,
Pdf
}
public interface IExportService
{
Task<byte[]> ExportAsync(int projectId, List<string> filePaths, ExportFormat format);
}