26 lines
540 B
C#
26 lines
540 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace BaseCellSimulation
|
|
{
|
|
public struct ValueRange
|
|
{
|
|
[JsonPropertyName("Value")]
|
|
public double Value;
|
|
[JsonPropertyName("Min")]
|
|
public double Min;
|
|
[JsonPropertyName("Max")]
|
|
public double Max;
|
|
|
|
public ValueRange(double start, double end)
|
|
{
|
|
Min = start;
|
|
Max = end;
|
|
}
|
|
}
|
|
}
|