using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using IStation.Model.Bimface; namespace IStation.Model { public partial class BimfaceFile { /// /// /// public class FileSettingsModel:JsonModel { /// /// 外观 /// public FileAppearance Appearance { get; set; } /// /// 3D视角列表 /// public List CustomCameraStatus3ds { get; set; } /// /// 路径漫游 (用于巡检) /// public List CustomWalkThroughs { get; set; } /// /// 构件层列表 /// public List CustomComponentLayers { get; set; } } } }