using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model.Bimface
{
///
/// 模型类型
///
public enum eModelType
{
///
/// 文件
///
File = 0,
///
/// 模型对比
///
Compare = 1,
///
/// 集成模型
///
Integrate = 2
}
}