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 eFileStatus
{
///
/// 上传中
///
Uploading = 0,
///
/// 上传成功
///
UploadSucceed = 1,
///
/// 转换中
///
Converting = 2,
///
/// 转换成功
///
ConvertSucceed = 3,
///
/// 对比中
///
Comparing = 4,
///
/// 对比成功
///
CompareSucceed = 5,
///
/// 集成中
///
Integrating = 6,
///
/// 集成成功
///
IntegrateSucceed = 7
}
}