zhangyuekai
2024-08-17 ac588abe1499785d2c4840bc79e3cdc42e08560a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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; }
    }
}