Forge
csharpdeeb25a2
1#nullable enable
2using CascadeIDE.Cockpit.Channels;
3
4namespace CascadeIDE.Cockpit.Channels.TraceFlow;
5
6/// <summary>
7/// Trace-flow channel contract (ADR 0036 p.1): produces semantic trace payload from domain data.
8/// </summary>
9public interface ITraceFlowChannel : IChannel<TraceFlowChannelContext, TraceFlowChannelSnapshot>
10{
11}
12
View only · write via MCP/CIDE