Files
2026-04-15 11:18:26 +02:00

8 lines
348 B
C#

namespace TrafagSalesExporter.Services;
public interface IAppEventLogService
{
Task WriteAsync(string category, string message, string level = "Info", int? siteId = null, string? land = null, string? details = null);
Task WriteDebugAsync(string category, string message, int? siteId = null, string? land = null, string? details = null);
}