Files
Essentials/src/PepperDash.Essentials.Core/Routing/IRoutingSlot.cs
2024-03-08 11:16:48 -06:00

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