mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-29 04:15:00 +00:00
15 lines
347 B
C#
15 lines
347 B
C#
using System.Collections.Generic;
|
|
using System;
|
|
|
|
namespace PepperDash.Essentials.Core
|
|
{
|
|
/// <summary>
|
|
/// Defines an IRouting with a feedback event
|
|
/// </summary>
|
|
public interface IRoutingWithFeedback : IRouting
|
|
{
|
|
List<RouteSwitchDescriptor> CurrentRoutes { get; }
|
|
|
|
event EventHandler RoutingChanged;
|
|
}
|
|
} |