using HStation.RevitDev.Model.AttributeClass;
|
using HStation.RevitDev.Model.ModelEnum;
|
|
namespace HStation.RevitDev.RevitDataExport.Entity
|
{
|
public class ConfigModel
|
{
|
[RevitType(RevitType.RFT_Blocker)]
|
public bool RFT_Blocker { get; set; }
|
|
[RevitType(RevitType.RFT_Converter)]
|
public bool RFT_Converter { get; set; }
|
|
[RevitType(RevitType.RFT_Elbow)]
|
public bool RFT_Elbow { get; set; }
|
|
[RevitType(RevitType.RFT_FireHydrant)]
|
public bool RFT_FireHydrant { get; set; }
|
|
[RevitType(RevitType.RFT_FourJoint)]
|
public bool RFT_FourJoint { get; set; }
|
|
[RevitType(RevitType.RFT_HeatExchanger)]
|
public bool RFT_HeatExchanger { get; set; }
|
|
[RevitType(RevitType.RFT_Pipe)]
|
public bool RFT_Pipe { get; set; }
|
|
[RevitType(RevitType.RFT_Pump)]
|
public bool RFT_Pump { get; set; }
|
|
[RevitType(RevitType.RFT_Shower)]
|
public bool RFT_Shower { get; set; }
|
|
[RevitType(RevitType.RFT_ThreeJoint)]
|
public bool RFT_ThreeJoint { get; set; }
|
|
[RevitType(RevitType.RFT_Valve)]
|
public bool RFT_Valve { get; set; }
|
|
[RevitType(RevitType.RFT_WaterBox)]
|
public bool RFT_WaterBox { get; set; }
|
|
[RevitType(RevitType.RFT_WaterMeter)]
|
public bool RFT_WaterMeter { get; set; }
|
|
[RevitType(RevitType.RFT_WaterPool)]
|
public bool RFT_WaterPool { get; set; }
|
|
[RevitType(RevitType.RFT_Others)]
|
public bool RFT_Others { get; set; }
|
}
|
}
|