Files
Essentials/src/PepperDash.Essentials.Core/Routing/IRoutingSource.cs
2025-05-02 12:27:16 -05:00

9 lines
266 B
C#

namespace PepperDash.Essentials.Core
{
/// <summary>
/// Marker interface to identify a device that acts as the origin of a signal path (<see cref="IRoutingOutputs"/>).
/// </summary>
public interface IRoutingSource : IRoutingOutputs
{
}
}