namespace Yw.WinFrmUI.Bimface
{
///
/// 强调构件
///
public class ComponentsBlink
{
///
///
///
public ComponentsBlink() { }
///
///
///
public ComponentsBlink(List ids, string color, double transparency)
{
this.Ids = ids;
this.Color = color;
this.Transparency = transparency;
}
///
/// 构件id列表
///
[JsonProperty("ids", NullValueHandling = NullValueHandling.Ignore)]
public List Ids { get; set; }
///
/// 颜色
///
[JsonProperty("color", NullValueHandling = NullValueHandling.Ignore)]
public string Color { get; set; }
///
/// 透明度
///
[JsonProperty("transparency", NullValueHandling = NullValueHandling.Ignore)]
public double Transparency { get; set; }
}
}