namespace PepperDash.Essentials.Core { /// /// Defines the contract for ITxRouting /// 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; } } }