mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-29 20:34:51 +00:00
17 lines
337 B
C#
17 lines
337 B
C#
using PepperDash.Core;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PepperDash.Essentials.Core.Routing
|
|
{
|
|
public interface IRoutingSlot:IKeyName
|
|
{
|
|
int SlotNumber { get; }
|
|
|
|
eRoutingSignalType SupportedSignalTypes { get; }
|
|
}
|
|
}
|