using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace IStation.Model.Bimface { /// /// Bim构件层 /// public class CustomComponentLayer : CustomLayer { /// /// 构件Ids /// public List ComponentIds { get; set; } /// /// 是否可见 /// public bool Visible { get; set; } = true; /// /// 是否半透明 /// public bool Translucent { get; set; } = false; /// /// 显示颜色 /// public DisplayColor DisplayColor { get; set; } /// /// 构件类型 /// public eComponentType ComponentType { get; set; } } }