16 lines
244 B
C#
16 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);
|
||
|
|
}
|