namespace PepperDash.Essentials.Core; /// /// Defines the contract for IRoutingNumeric /// public interface IRoutingNumeric : IRouting { /// /// Executes a numeric switch on the device /// /// input selector /// output selector /// type of signal void ExecuteNumericSwitch(ushort input, ushort output, eRoutingSignalType type); }