csharpdeeb25a2 | 1 | #nullable enable |
| 2 | |
| 3 | namespace CascadeIDE.Cockpit.Channels; |
| 4 | |
| 5 | /// <summary> |
| 6 | /// Generic channel coordinator contract: aggregates multiple channel outputs. |
| 7 | /// </summary> |
| 8 | public interface IChannelCoordinator<TContext, TPayload> |
| 9 | { |
| 10 | TPayload Build(in TContext context); |
| 11 | } |
| 12 | |
View only · write via MCP/CIDE