qin
2024-09-28 e358beb08f5be49703009b64f058ecfbcfeefbd9
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
using System.ComponentModel;
 
namespace HStation.RevitDev.RevitDataExport.Entity
{
    public class ElementModel : ModelBase
    {
        [Description("编号")]
        public string 编号 { get; set; }
 
        [Description("连接构件")]
        public string 连接构件 { get; set; }
 
        [Description("名称")]
        public string 名称 { get; set; }
 
        [Description("系统类型")]
        public string 系统类型 { get; set; }
 
 
        [Description("楼层")]
        public string 楼层 { get; set; }
 
 
        [Description("包围框")]
        public string 包围框 { get; set; }
    }
}