Files
Essentials/src/PepperDash.Essentials.Core/Routing/IRoutingWithFeedback.cs

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;
}
}