mirror of
https://github.com/AntonyCorbett/JWLMerge
synced 2026-01-17 03:04:49 -05:00
11 lines
292 B
C#
11 lines
292 B
C#
using JWLMerge.ImportExportServices.Models;
|
|
|
|
namespace JWLMerge.ImportExportServices;
|
|
|
|
public interface IExportToFileService
|
|
{
|
|
ExportBibleNotesResult Execute(
|
|
string exportFilePath,
|
|
IReadOnlyCollection<BibleNoteForImportExport>? notes,
|
|
string backupFilePath);
|
|
} |