Files
2026-06-02 10:56:03 +02:00

11 lines
313 B
C#

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