using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using static Yw.WinFrmUI.Q3D.ObjectEnum; namespace Yw.WinFrmUI.Q3D { /// /// 流量曲线 /// [Serializable] public class FlowCurve { public string Name { get; set; } public FlowCurveType FlowCurveType { get; set; } public List Data { get; set; } = new List(); } }