using System; using System.Collections.Generic; using System.Text; namespace ProductionLineMonitor.Core.Dtos { public class ECharts { public string ChartName { get; set; } public List X { get; set; } public List Legend { get; set; } = new List(); public List Series { get; set; } = new List(); } public class Serie { public string Id { get; set; } public string Name { get; set; } public List Data { get; set; } = new List(); } }