cloudflight
2024-10-12 46e3091f9cdefc7e2ffbc69bcb9c39650b1c0587
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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>();
    }
}