using IStation.Model.Bimface; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// /// public class AddBimfaceFileTypeInput { /// /// 客户标识 /// public long CorpID { get; set; } /// /// 对象类型 /// public string ObjectType { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 标识符 /// public string Identifier { get; set; } /// /// 文件格式 /// public eFormatType FormatType { get; set; } /// /// 标签名称 /// public string TagName { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } } }