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