using System; using System.Collections.Generic; using System.Text; namespace DllEapEntity.RA { public class Series { /// /// 名称 /// public string Name { get; set; } public int YAxis { get; set; } public bool Visible { get; set; } = true; /// /// 类型 /// public string Type { get; set; } /// /// 数据 /// public List Data { get; set; } } }