tangxu
2024-03-25 65906e7cfa055cf630f8e9e19cc3c349fd5f131d
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
using System.Collections.Generic;
using System.Linq;
 
namespace IStation.Model
{
    /// <summary>
    /// 
    /// </summary>
    public class SignalTypeGroupTree : Model.SignalTypeGroupTreeItem
    {
        /// <summary>
        /// 
        /// </summary>
        public SignalTypeGroupTree() : base() { }
 
        /// <summary>
        /// 
        /// </summary>
        public SignalTypeGroupTree(SignalTypeGroup rhs) : base(rhs)
        {
            this.Children = new List<SignalTypeGroupTree>();
        }
 
        /// <summary>
        /// 
        /// </summary>
        public SignalTypeGroupTree(SignalTypeGroupTreeItem rhs) : base(rhs)
        {
            this.Children = new List<SignalTypeGroupTree>();
        }
 
        /// <summary>
        /// 
        /// </summary>
        public SignalTypeGroupTree(SignalTypeGroupTree rhs) : base(rhs)
        {
            this.Children = rhs.Children?.Select(x => new SignalTypeGroupTree(x)).ToList();
        }
 
        /// <summary>
        /// 子项列表
        /// </summary>
        public List<SignalTypeGroupTree> Children { get; set; }
    }
}