using SharepointToolbox.Web.Core.Models; namespace SharepointToolbox.Web.Services.Audit; public interface IAuditService { Task LogAsync(string action, string clientName, IEnumerable sites, string details = ""); Task> GetAllAsync(); Task ExportCsvAsync(); }