fix: add base classes for input/output slots for matrix routing

This commit is contained in:
Andrew Welker
2024-03-26 15:19:06 -05:00
parent ee4ccb0d1a
commit 09ac964335
3 changed files with 29 additions and 4 deletions

View File

@@ -10,4 +10,17 @@ namespace PepperDash.Essentials.Core.Routing
{
string TxDeviceKey { get; }
}
public abstract class RoutingInputSlotBase : IRoutingInputSlot
{
public abstract string TxDeviceKey { get; }
public abstract int SlotNumber { get; }
public abstract eRoutingSignalType SupportedSignalTypes { get; }
public abstract string Name { get; }
public abstract BoolFeedback IsOnline { get; }
public abstract bool VideoSyncDetected { get; }
public abstract string Key { get; }
public abstract event EventHandler VideoSyncChanged;
}
}