11 lines
313 B
C#
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();
|
|
}
|