using System;
using PepperDash.Core;
namespace PepperDash.Essentials.Core
{
///
/// Defines an event structure for reporting output route data
///
public interface IRoutingFeedback : IKeyName
{
event EventHandler NumericSwitchChange;
//void OnSwitchChange(RoutingNumericEventArgs e);
}
}