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
namespace HStation.Model
{
    /// <summary>
    /// 属性值
    /// </summary>
    public class RevitPropValue
    {
        /// <summary>
        /// 
        /// </summary>
        public RevitPropValue() { }
 
        /// <summary>
        /// 
        /// </summary>
        public RevitPropValue(string propName, string propValue)
        {
            this.PropName = propName;
            this.PropValue = propValue;
        }
 
 
 
        /// <summary>
        /// 
        /// </summary>
        public RevitPropValue(RevitPropValue rhs)
        {
            this.PropName = rhs.PropName;
            this.PropValue = rhs.PropValue;
        }
 
        /// <summary>
        /// 属性名称
        /// </summary>
        public string PropName { get; set; }
 
        /// <summary>
        /// 属性值
        /// </summary>
        public string PropValue { get; set; }
    }
}