using PepperDash.Essentials.Core.Routing;
using System;
using System.Collections.Generic;
namespace PepperDash.Essentials.Core
{
///
/// Defines the contract for IRoutingSinkWithFeedback
///
public interface IRoutingSinkWithFeedback : IRoutingSinkWithSwitching
{
}
/* ///
/// For fixed-source endpoint devices
///
public interface IRoutingSinkWithFeedback : IRoutingSinkWithSwitching
{
RouteSwitchDescriptor CurrentRoute { get; }
event EventHandler InputChanged;
}*/
}