using System;
using System.Collections.Generic;
namespace PepperDash.Essentials.Core.Routing
{
///
/// Defines the contract for IRoutingOutputSlot
///
public interface IRoutingOutputSlot : IRoutingSlot
{
event EventHandler OutputSlotChanged;
string RxDeviceKey { get; }
Dictionary CurrentRoutes { get; }
}
}