8 lines
291 B
C#
8 lines
291 B
C#
|
namespace InnovEnergy.API.DataModel;
|
||
|
|
||
|
public abstract partial record Installation : UserParent
|
||
|
{
|
||
|
public String? VpnIp { get; set; }
|
||
|
public String? IeSerial { get; set; }
|
||
|
public IReadOnlyList<String> Tags { get; set; } = Array.Empty<String>();
|
||
|
}
|