lixiaojun
6 天以前 fba4613d6b8dcbcaea6c7dc83bda14ed49d2f6de
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
namespace Yw.WinFrmUI.Hydro
{
    /// <summary>
    /// 组件
    /// 所有组件的基类
    /// </summary>
    public abstract class ParterL3d 
    {
        /// <summary>
        /// 
        /// </summary>
        public ParterL3d() { }
 
        /// <summary>
        /// 
        /// </summary>
        public ParterL3d(ParterL3d rhs)
        {
            this.Id = rhs.Id;
            this.Name = rhs.Name;
        }
 
        /// <summary>
        /// id
        /// </summary>
        public string Id { get; set; }
 
        /// <summary>
        /// 名称
        /// </summary>
        public string Name { get; set; }
 
 
 
 
 
 
    }
}