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; } } }