using System; namespace PepperDash.Essentials.Core.Bridges { /// /// Represents a IDigitalInputJoinMap /// public class IDigitalInputJoinMap : JoinMapBaseAdvanced { [JoinName("InputState")] public JoinDataComplete InputState = new JoinDataComplete(new JoinData { JoinNumber = 1, JoinSpan = 1 }, new JoinMetadata { Description = "Input State", JoinCapabilities = eJoinCapabilities.ToSIMPL, JoinType = eJoinType.Digital }); /// /// Constructor to use when instantiating this Join Map without inheriting from it /// /// Join this join map will start at public IDigitalInputJoinMap(uint joinStart) : this(joinStart, typeof(IDigitalInputJoinMap)) { } /// /// Constructor to use when extending this Join map /// /// Join this join map will start at /// Type of the child join map protected IDigitalInputJoinMap(uint joinStart, Type type) : base(joinStart, type) { } } }