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