20 lines
634 B
C#
20 lines
634 B
C#
|
|
|
|
// ReSharper disable UnusedAutoPropertyAccessor.Global
|
|
|
|
namespace InnovEnergy.Meiringen.Records;
|
|
|
|
public class IoStatusOld : BatteryRecordOld
|
|
{
|
|
public String Installation { get; set; }
|
|
public String BatteryId { get; set; }
|
|
|
|
public Boolean MainSwitchClosed { get; set; }
|
|
public Boolean AlarmOutActive { get; set; }
|
|
public Boolean InternalFanActive { get; set; }
|
|
public Boolean VoltMeasurementAllowed { get; set; }
|
|
public Boolean AuxRelay { get; set; }
|
|
public Boolean RemoteState { get; set; }
|
|
public Boolean HeatingOn { get; set; }
|
|
|
|
} |