15 lines
725 B
C#
15 lines
725 B
C#
namespace InnovEnergy.App.SinexcelCommunication.SystemConfig;
|
|
|
|
public record DeviceConfig
|
|
{
|
|
public required SerialLineConfig Serial { get; init; }
|
|
|
|
public required SodiDevice Inverter1 { get; init; }
|
|
public required SodiDevice Inverter2 { get; init; }
|
|
public required SodiDevice Inverter3 { get; init; }
|
|
public required SodiDevice Inverter4 { get; init; }
|
|
public required SodiDevice Inverter5 { get; init; }
|
|
public required SodiDevice Inverter6 { get; init; }
|
|
public required SodiDevice Inverter7 { get; init; }
|
|
public required SodiDevice Inverter8 { get; init; }
|
|
} |