Added Json Schemas

This commit is contained in:
WyanMueller
2025-11-16 19:52:52 +01:00
parent d2e409d10f
commit 0487824e63
16 changed files with 931 additions and 35 deletions
+9 -4
View File
@@ -3,18 +3,23 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Text.Json.Serialization;
namespace BaseCellSimulation
{
public struct ValueRange
{
public double Start;
public double End;
[JsonPropertyName("Value")]
public double Value;
[JsonPropertyName("Min")]
public double Min;
[JsonPropertyName("Max")]
public double Max;
public ValueRange(double start, double end)
{
Start = start;
End = end;
Min = start;
Max = end;
}
}
}