Innovenergy_trunk/csharp/app/API/DataModel/Installation.cs

8 lines
291 B
C#
Raw Normal View History

2023-02-16 12:57:06 +00:00
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>();
}