namespace HStation.Model
{
///
/// 属性值
///
public class RevitPropValue
{
///
///
///
public RevitPropValue() { }
///
///
///
public RevitPropValue(string propName, string propValue)
{
this.PropName = propName;
this.PropValue = propValue;
}
///
///
///
public RevitPropValue(RevitPropValue rhs)
{
if (rhs != null)
{
this.PropName = rhs.PropName;
this.PropValue = rhs.PropValue;
}
}
///
/// 属性名称
///
public string PropName { get; set; }
///
/// 属性值
///
public string PropValue { get; set; }
}
}