duheng
2025-02-19 ad8f813f5eddd66740b4e09801e4ea02ddf70a4a
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
namespace Yw.WinFrmUI.HydroW3d
{
    /// <summary>
    /// 组件
    /// 所有组件的基类
    /// </summary>
    public class ParterViewModel
    {
        /// <summary>
        /// 
        /// </summary>
        public ParterViewModel() { }
 
        /// <summary>
        /// 
        /// </summary>
        public ParterViewModel(ParterViewModel rhs)
        {
            this.Id = rhs.Id;
            this.Catalog = rhs.Catalog;
            this.Name = rhs.Name;
        }
 
        /// <summary>
        /// id
        /// </summary>
        [JsonProperty("Id", NullValueHandling = NullValueHandling.Ignore)]
        public string Id { get; set; }
 
        /// <summary>
        /// 分类
        /// </summary>
        [JsonIgnore]
        public string Catalog { get; set; }
 
        /// <summary>
        /// 名称
        /// </summary>
        [JsonProperty("Name", NullValueHandling = NullValueHandling.Ignore)]
        public string Name { get; set; }
 
 
 
 
 
 
 
    }
}