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