using HStation.RevitDev.Model.AttributeClass; using System.ComponentModel; namespace HStation.RevitDev.RevitDataExport.Entity.ElementModels { [RevitType(Model.ModelEnum.RevitType.RFT_FireHydrant)] public class FireHydrantModel : ElementModel { public FireHydrantModel(ElementModel baseModel) { base.编号 = baseModel.编号; base.连接构件 = baseModel.连接构件; base.名称 = baseModel.名称; base.系统类型 = baseModel.系统类型; base.楼层 = baseModel.楼层; base.包围框 = baseModel.包围框; } [Description("K系数")] public string K系数 { get; set; } } }