AuthorBuddy/Services/IExportService.cs

16 lines
244 B
C#
Raw Normal View History

2026-05-31 19:31:27 +02:00
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);
}