Files
Essentials/src/PepperDash.Essentials.Core/Routing/IRoutingInputSlot.cs
2025-07-22 15:53:01 +00:00

11 lines
262 B
C#

namespace PepperDash.Essentials.Core.Routing
{
/// <summary>
/// Defines the contract for IRoutingInputSlot
/// </summary>
public interface IRoutingInputSlot: IRoutingSlot, IOnline, IVideoSync
{
string TxDeviceKey { get; }
}
}