Add DevicesConfig, AcDcConfig and DcDCConfig
This commit is contained in:
parent
c150793c70
commit
31ad48e77e
|
@ -0,0 +1,8 @@
|
|||
namespace InnovEnergy.App.SaliMax.SystemConfig;
|
||||
|
||||
public class AcDcConfig
|
||||
{
|
||||
public required Double MaxDcLinkVoltage { get; set; }
|
||||
public required Double MinDcLinkVoltage { get; set; }
|
||||
public required Double ReferenceDcLinkVoltage { get; set; }
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
namespace InnovEnergy.App.SaliMax.SystemConfig;
|
||||
|
||||
public class DcDcConfig
|
||||
{
|
||||
public required Double LowerDcLinkVoltage { get; set; }
|
||||
public required Double ReferenceDcLinkVoltage { get; set; }
|
||||
public required Double UpperDcLinkVoltage { get; set; }
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
namespace InnovEnergy.App.SaliMax.SystemConfig;
|
||||
|
||||
public class DevicesConfig
|
||||
{
|
||||
public required AcDcConfig AcDc { get; set; }
|
||||
public required DcDcConfig DcDc { get; set; }
|
||||
}
|
Loading…
Reference in New Issue