From fce689d5511a873153e7f98e594663c141e5af25 Mon Sep 17 00:00:00 2001 From: atef Date: Mon, 27 Nov 2023 09:27:27 +0100 Subject: [PATCH] change the force calibration charge as enum instead of boolean --- .../App/SaliMax/src/SystemConfig/CalibrationChargeType.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 csharp/App/SaliMax/src/SystemConfig/CalibrationChargeType.cs diff --git a/csharp/App/SaliMax/src/SystemConfig/CalibrationChargeType.cs b/csharp/App/SaliMax/src/SystemConfig/CalibrationChargeType.cs new file mode 100644 index 000000000..bbad073ce --- /dev/null +++ b/csharp/App/SaliMax/src/SystemConfig/CalibrationChargeType.cs @@ -0,0 +1,8 @@ +namespace InnovEnergy.App.SaliMax.SystemConfig; + +public enum CalibrationChargeType +{ + No, + UntilEoc, + Yes +} \ No newline at end of file