using System.Text.Json.Nodes; namespace InnovEnergy.Lib.StatusApi; public record Bus { public String Top { get; init; } public String Right { get; init; } public String Left { get; init; } public String Bottom { get; init; } public Boolean Connected { get; init; } public JsonNode ToJson() { throw new NotImplementedException(); } }