1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| using System;
| using System.Collections.Generic;
| using System.Drawing;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace Hydro.Core.Model
| {
| /// <summary>
| /// 流量曲线
| /// </summary>
| public class FlowCurve
| {
| public string Name { get; set; }
|
| public ObjectEnum.FlowCurveType FlowCurveType { get; set; }
|
| public List<PointF> Data { get; set; } = new List<PointF>();
| }
| }
|
|