using HStation.RevitDev.Model.AttributeClass; using HStation.RevitDev.Model.ModelEnum; namespace HStation.Model { /// /// 装饰件 /// /// [ExportType(ExportType.EFT_Others)] public class RevitDecorator { /// /// /// public RevitDecorator() { } /// /// /// public RevitDecorator(Model.RevitDecorator rhs) { this.Id = rhs.Id; this.Name = rhs.Name; this.Category = rhs.Category; this.Decoration = rhs.Decoration; this.Description = rhs.Description; } /// /// Id /// [Parameter("Id")] public string Id { get; set; } /// /// 名称 /// [Parameter("名称")] public string Name { get; set; } /// /// 类别 /// [Parameter("类别")] public string Category { get; set; } /// /// 装饰 /// [Parameter("装饰")] public string Decoration { get; set; } /// /// 说明 /// [Parameter("说明")] public string Description { get; set; } } }