zhangyk-c
2024-07-22 794cfd44a319ae5f0d8a53aec44fd0b98f7a203b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
using HStation.RevitDev.Model.AttributeClass;
using HStation.RevitDev.Model.ModelEnum;
 
namespace HStation.Model
{
    /// <summary>
    /// 装饰件
    /// </summary>
    /// 
    [ExportType(ExportType.EFT_Others)]
    public class RevitDecorator
    {
        /// <summary>
        /// 
        /// </summary>
        public RevitDecorator() { }
 
        /// <summary>
        /// 
        /// </summary>
        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;
        }
 
        /// <summary>
        /// Id
        /// </summary>
        [Parameter("Id")]
        public string Id { get; set; }
 
        /// <summary>
        /// 名称
        /// </summary>
        [Parameter("名称")]
        public string Name { get; set; }
 
        /// <summary>
        /// 类别
        /// </summary>
        [Parameter("类别")]
        public string Category { get; set; }
 
        /// <summary>
        /// 装饰
        /// </summary>
        [Parameter("装饰")]
        public string Decoration { get; set; }
 
        /// <summary>
        /// 说明
        /// </summary>    
        [Parameter("说明")]
        public string Description { get; set; }
    }
}