namespace ZymonicGateway.Contracts; public interface IZymonicGatewayDebugRequestDecider { bool ShouldDebug(ZymonicGatewayQueuedWork request); IReadOnlyList GetRules(); ZymonicGatewayDebugRule UpsertRuntimeRule(string name, ZymonicGatewayDebugRule rule); bool RemoveRuntimeRule(string name); void ClearRuntimeRules(); }