namespace Yw.EPAnet
{
///
/// 曲线
///
public class Curve : Operation
{
///
///
///
public Curve() { }
///
///
///
public Curve(Curve rhs) : base(rhs)
{
this.CurveType = rhs.CurveType;
this.CurveData = rhs.CurveData;
}
///
/// 曲线类型
///
public string CurveType { get; set; }
///
/// 曲线数据
///
public List CurveData { get; set; }
}
}