qin
2024-09-24 43bd8ee779a4cca7483bdf73c176b9fb8ebed5e2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using HStation.RevitDev.Model.AttributeClass;
using System.ComponentModel;
 
namespace HStation.RevitDev.RevitDataExport.Entity.ElementModels
{
    [RevitType(Model.ModelEnum.RevitType.RFT_Others)]
    public class OtherModel : ElementModel
    {
        public OtherModel(ElementModel baseModel)
        {
            base.编号 = baseModel.编号;
            base.连接构件 = baseModel.连接构件;
            base.名称 = baseModel.名称;
            base.系统类型 = baseModel.系统类型;
            base.楼层 = baseModel.楼层;
            base.包围框 = baseModel.包围框;
        }
    }
}