using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace IStation.Bimface { /// /// 构件属性 /// public class ComponentProperty { public BoundingBox boundingBox { get; set; } public string elementId { get; set; } public string familyGuid { get; set; } public string guid { get; set; } public string name { get; set; } public List properties { get; set; } } }