8 lines
192 B
C#
8 lines
192 B
C#
namespace adas_core.Domain.Models;
|
|
|
|
public class ChartValue
|
|
{
|
|
public List<string> Labels { get; set; } = [];
|
|
|
|
public Dictionary<string, List<double>> Series { get; set; } = new();
|
|
} |