Files
QuantEngineByItz/src/dotnet/QuantEngine.Application/Interfaces/IRuntimeAuditTrailService.cs
T
kjh2064 99377e9ca9
Validators (Pushes and Pull Requests) / validate-ui-and-storage (push) Successful in 16s
Validators (Pushes and Pull Requests) / validate-core (push) Has been cancelled
refactor(dotnet): centralize runtime audit trail
2026-07-13 00:52:32 +09:00

7 lines
154 B
C#

namespace QuantEngine.Application.Interfaces;
public interface IRuntimeAuditTrailService
{
void Append<T>(string category, string key, T payload);
}