using Autodesk.Revit.DB;
namespace uBIM_EarthTools
{
///
/// 地质层
///
class GeologyLayer
{
///
/// 地质层名
///
public string Type { get; set; }
///
/// 坐标点
///
public XYZ Point { get; set; }
///
/// 构造函数
///
/// 地质层名
/// 坐标点
public GeologyLayer(string type, XYZ point)
{
Type = type;
Point = point;
}
}
}