| 1 | #nullable enable |
| 2 | using CascadeIDE.Cockpit.Channels; |
| 3 | |
| 4 | namespace 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> |
| 9 | public interface ITraceFlowChannel : IChannel<TraceFlowChannelContext, TraceFlowChannelSnapshot> |
| 10 | { |
| 11 | } |
| 12 |