namespace adas_core.Domain.Models;
///
/// Represents a value used in a chart, typically encapsulating a data point or measurement
/// that can be plotted or rendered as part of a chart visualization.
///
public class ChartValue
{
public List Labels { get; set; } = [];
public Dictionary> Series { get; set; } = new();
}