lixiaojun
2024-10-21 bc8d900f5ca26216dae0e1be243ab6237790873b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
namespace Yw.WinFrmUI.Bimface
{
    /// <summary>
    /// 强调构件
    /// </summary>
    public class ComponentsBlink
    {
        /// <summary>
        /// 
        /// </summary>
        public ComponentsBlink() { }
 
        /// <summary>
        /// 
        /// </summary>
        public ComponentsBlink(List<string> ids, string color, double transparency)
        {
            this.Ids = ids;
            this.Color = color;
            this.Transparency = transparency;
        }
 
        /// <summary>
        /// 构件id列表
        /// </summary>
        [JsonProperty("ids", NullValueHandling = NullValueHandling.Ignore)]
        public List<string> Ids { get; set; }
 
        /// <summary>
        /// 颜色
        /// </summary>
        [JsonProperty("color", NullValueHandling = NullValueHandling.Ignore)]
        public string Color { get; set; }
 
        /// <summary>
        /// 透明度
        /// </summary>
        [JsonProperty("transparency", NullValueHandling = NullValueHandling.Ignore)]
        public double Transparency { get; set; }
    }
}