namespace HStation.Dto { /// /// 获取性能点列表 /// public class GetPerformCurveFeatPointListInput { /// /// 图形类型 /// public HStation.PhartRelation.eGraphType GraphType { get; set; } /// /// 几何信息 /// public string GeometryInfo { get; set; } /// /// 点数量 /// public int? PointNumber { get; set; } /// /// 最小间隔 /// public double? MinSpace { get; set; } } }