Files
Ai/TrafagSalesExporter/Services/ISiteExportService.cs
T
2026-04-13 14:37:21 +02:00

9 lines
204 B
C#

using TrafagSalesExporter.Models;
namespace TrafagSalesExporter.Services;
public interface ISiteExportService
{
Task<SiteExportResult> ExportAsync(Site site, Action<string>? updateStatus = null);
}