Files
Essentials/src/PepperDash.Essentials.Core/Routing/IRoutingFeedback.cs
2025-07-22 15:53:01 +00:00

16 lines
362 B
C#

using System;
using PepperDash.Core;
namespace PepperDash.Essentials.Core
{
/// <summary>
/// Defines the contract for IRoutingFeedback
/// </summary>
public interface IRoutingFeedback : IKeyName
{
event EventHandler<RoutingNumericEventArgs> NumericSwitchChange;
//void OnSwitchChange(RoutingNumericEventArgs e);
}
}