namespace PepperDash.Essentials.Core; /// /// Represents a routing device (typically a transmitter or source) that provides numeric feedback for its current route. /// Extends . /// public interface ITxRouting : IRoutingNumeric { /// /// Feedback indicating the currently routed video source by its numeric identifier. /// IntFeedback VideoSourceNumericFeedback { get; } /// /// Feedback indicating the currently routed audio source by its numeric identifier. /// IntFeedback AudioSourceNumericFeedback { get; } }