using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace IStation.Model.Bimface
{
///
/// Bimface显示颜色
///
public class DisplayColor
{
///
/// 构件显示Html颜色
///
public string DisplayHtmlColor { get; set; }
///
/// 颜色透明度(0-1)1d代表完全不透明,0代表完全透明
///
public double ColorTransparency
{
get { return _colorTransparency; }
set { _colorTransparency = value; }
}
private double _colorTransparency = 1;
}
}