lixiaojun
2025-03-17 85fc43aa549bbe24c4d867a055c0d90d21deba8b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
namespace Yw.Epanet
{
    /// <summary>
    /// 曲线
    /// </summary>
    public class Curve : Operation
    {
        /// <summary>
        /// 
        /// </summary>
        public Curve()
        {
            this.CurveData = new List<CurvePoint>();
        }
 
        /// <summary>
        /// 
        /// </summary>
        public Curve(Curve rhs) : base(rhs)
        {
            this.CurveType = rhs.CurveType;
            this.CurveData = rhs.CurveData;
        }
 
        /// <summary>
        /// 曲线类型
        /// </summary>
        public string CurveType { get; set; }
 
        /// <summary>
        /// 曲线数据
        /// </summary>
        public List<CurvePoint> CurveData { get; set; }
 
 
    }
}