Files
Essentials/src/PepperDash.Essentials.Core/Routing/IRoutingFeedback.cs
2024-05-23 08:38:50 -05:00

16 lines
379 B
C#

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