mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-30 04:44:49 +00:00
16 lines
379 B
C#
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);
|
|
}
|
|
} |