Update the Configuration for RabbitMQ manager. for sinexcel project

This commit is contained in:
atef 2025-11-12 15:52:53 +01:00
parent c496f9b398
commit 44f5841bd4
1 changed files with 6 additions and 5 deletions

View File

@ -1,12 +1,13 @@
using InnovEnergy.Lib.Devices.Sinexcel_12K_TL.DataType;
namespace InnovEnergy.App.SinexcelCommunication.DataTypes;
public class Configuration
{
public Double MinimumSoC { get; set; }
public Double GridSetPoint { get; set; }
// public Double MaximumDischargingCurrent { get; set; }
// public Double MaximumChargingCurrent { get; set; }
// public EssMode OperatingPriority { get; set; }
// public required Int16 BatteriesCount { get; set; }
public Double MaximumDischargingCurrent { get; set; }
public Double MaximumChargingCurrent { get; set; }
public WorkingMode OperatingPriority { get; set; }
public Int16 BatteriesCount { get; set; }
}