using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model.Bimface
{
///
/// 构件类型
///
public enum eComponentType
{
///
/// 其他
///
Other = 0,
///
/// 建筑物外墙
///
BuildingWall = 1,
///
/// 地面
///
Ground = 2,
///
/// 水池上盖
///
PoolCover = 3,
///
/// 机泵
///
EnginePump = 4
}
}