21 lines
402 B
C#
21 lines
402 B
C#
|
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();
|
||
|
}
|
||
|
}
|
||
|
|