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
|
{
|
|
/// <summary>
|
/// 流量曲线
|
/// </summary>
|
[Serializable]
|
public class FlowCurve
|
{
|
public string Name { get; set; }
|
|
public FlowCurveType FlowCurveType { get; set; }
|
|
public List<PointF> Data { get; set; } = new List<PointF>();
|
}
|
}
|