19 lines
592 B
C#
19 lines
592 B
C#
|
|
|
|
// ReSharper disable UnusedAutoPropertyAccessor.Global
|
|
|
|
namespace InnovEnergy.Meiringen.Records;
|
|
|
|
public class TemperaturesOld : BatteryRecordOld
|
|
{
|
|
public String Installation { get; set; }
|
|
public String BatteryId { get; set; }
|
|
|
|
public Decimal Battery { get; set; }
|
|
public Decimal Board { get; set; }
|
|
public Decimal Center { get; set; }
|
|
public Decimal Lateral1 { get; set; }
|
|
public Decimal Lateral2 { get; set; }
|
|
public Decimal CenterHeaterPwm { get; set; }
|
|
public Decimal LateralHeaterPwm { get; set; }
|
|
} |