12 lines
436 B
C#
12 lines
436 B
C#
|
namespace InnovEnergy.API.DataModel;
|
||
|
|
||
|
public record VrmInstallation : Installation
|
||
|
{
|
||
|
public String? UniqueId { get; set; }
|
||
|
public UInt64 VrmId { get; set; }
|
||
|
public String? MachineSerial { get; set; }
|
||
|
public String? SystemType { get; set; }
|
||
|
public String? FirmwareVersion { get; set; }
|
||
|
public Boolean? Online { get; set; }
|
||
|
public String? MachineName { get; set; }
|
||
|
}
|