Files
JWLMerge/JWLMerge.ImportExportServices/IExportToFileService.cs
2023-02-23 14:09:17 +00:00

11 lines
292 B
C#

using JWLMerge.ImportExportServices.Models;
namespace JWLMerge.ImportExportServices;
public interface IExportToFileService
{
ExportBibleNotesResult Execute(
string exportFilePath,
IReadOnlyCollection<BibleNoteForImportExport>? notes,
string backupFilePath);
}