10 lines
236 B
C#
10 lines
236 B
C#
public interface IAuditService
|
|
{
|
|
Task WriteAsync(
|
|
AuditAction action,
|
|
string entityType,
|
|
Guid entityId,
|
|
object? previousValue = null,
|
|
object? newValue = null,
|
|
string? reason = null);
|
|
} |