using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Yw.WinFrmUI.Bimface
|
{
|
/// <summary>
|
/// 构件颜色
|
/// </summary>
|
public class ComponentsColor
|
{
|
/// <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; }
|
}
|
}
|