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