using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace IStation.Bimface
{
///
/// 模型类型枚举
///
public enum eModelIdType
{
///
/// 文件转换Id
///
fileId = 0,
///
/// 模型对比Id
///
compareId = 1,
///
/// 集成模型Id
///
integrateId = 2
}
}