Innovenergy_trunk/csharp/lib/StatusApi/DeviceStack.cs

21 lines
402 B
C#
Raw Normal View History

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