using HStation.RevitDev.Model.AttributeClass; namespace HStation.Model { /// /// 组件 /// public class RevitParter { /// /// /// public RevitParter() { } /// /// /// public RevitParter(Model.RevitParter rhs) { this.Id = rhs.Id; this.Name = rhs.Name; this.Code = rhs.Code; this.Flags = rhs.Flags; this.Description = rhs.Description; } /// /// Id /// [Parameter("Id")] public string Id { get; set; } /// /// 名称 /// [Parameter("名称")] public string Name { get; set; } /// /// 编码 /// [Parameter("编码")] public string Code { get; set; } /// /// 标签 /// [Parameter("标签")] public List Flags { get; set; } /// /// 说明 /// [Parameter("说明")] public string Description { get; set; } } }