using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
|
namespace IStation.Bimface
|
{
|
/// <summary>
|
/// 构件属性
|
/// </summary>
|
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<CommonPropertyGroup> properties { get; set; }
|
}
|
}
|