using System.Collections.Generic; namespace uBIM_EarthTools { /// /// 钻孔数据 /// class Borehole { /// /// 构造函数 /// /// 钻孔编号 /// 分层数据 public Borehole(string name, List valueList) { Name = name; ValueList = valueList; CurrentIndex = 0; CurrentType = string.Empty; } /// /// 构造函数 /// public Borehole() { Name = string.Empty; ValueList = new List(); CurrentIndex = 0; CurrentType = string.Empty; } /// /// 构造函数 /// public Borehole(Borehole borehole) { Name = borehole.Name; ValueList = borehole.ValueList; CurrentIndex = 0; CurrentType = string.Empty; } /// /// 钻孔编号 /// public string Name { get; set; } /// /// 钻孔分层数据 /// internal List ValueList { get; set; } /// /// 当前地层索引 /// public int CurrentIndex { get; set; } /// /// 当前地层类型 /// public string CurrentType { get; set; } } }