11 lines
445 B
C#
11 lines
445 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; }
|
|
} |