8 lines
367 B
C#
8 lines
367 B
C#
namespace InnovEnergy.App.SaliMax.SaliMaxRelays;
|
|
|
|
public record SaliMaxRelayStatus
|
|
{
|
|
public RelayState K1 { get; init; } = RelayState.Closed; // Address on Adam(0X) 00002
|
|
public RelayState K2 { get; init; } = RelayState.Closed; // Address on Adam(0X) 00003
|
|
public RelayState K3 { get; init; } = RelayState.Closed; // Address on Adam(0X) 00004
|
|
} |