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; }
|
}
|
}
|