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 eFormatType { /// /// 3D模型 /// _3D = 0, /// /// 2D模型 /// _2D = 1 } }