namespace HStation.Model { /// /// 装饰件 /// 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 /// public string Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 类别 /// public string Category { get; set; } /// /// 装饰 /// public string Decoration { get; set; } /// /// 说明 /// public string Description { get; set; } } }