/*------------------------------------------------------------------------- * 功能描述:VisibleComponentObject * 作者:xulisong * 创建时间: 2019/6/12 10:44:44 * 版本号:v1.0 * -------------------------------------------------------------------------*/ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using JBIM.Definition; namespace JBIM.Component { /// /// 可见构件 /// public class VisibleComponentObject:ComponentObject { public VisibleComponentObject() { //Location = new List(); OutLine = new List(); } /// /// 定位信息 /// public GeometryLocation Location { get; set; } /// /// 轮廓信息 /// public List OutLine { get; private set; } /// /// 族名称 /// public string FamilyName { get; set; } /// /// 族类型 /// public string FamilySymbol { get; set; } } }