namespace HStation.Model
{
///
/// 属性状态
///
public class RevitPropStatus
{
///
///
///
public RevitPropStatus() { }
///
///
///
public RevitPropStatus(string propName, ePropStatus propStatus, string statusInfo)
{
this.PropName = propName;
this.PropStatus = propStatus;
this.StatusInfo = statusInfo;
}
///
///
///
public RevitPropStatus(RevitPropStatus rhs)
{
if (rhs != null)
{
this.PropName = rhs.PropName;
this.PropStatus = rhs.PropStatus;
this.StatusInfo = rhs.StatusInfo;
}
}
///
/// 属性名称
///
public string PropName { get; set; }
///
/// 属性状态
///
public ePropStatus PropStatus { get; set; }
///
/// 状态信息
///
public string StatusInfo { get; set; }
}
}