refactor: move routing interfaces into their own files

This commit is contained in:
Andrew Welker
2024-04-10 09:27:27 -05:00
parent 5fad706cd8
commit c0adcb9b1e
35 changed files with 1440 additions and 809 deletions

View File

@@ -0,0 +1,7 @@
namespace PepperDash.Essentials.Core
{
public interface IRoutingNumeric : IRouting
{
void ExecuteNumericSwitch(ushort input, ushort output, eRoutingSignalType type);
}
}