Shuxia Ning
2024-12-19 b0c978129ba55cf81e8470b6c9326745a5dbc7d1
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
namespace HStation.Vmo
{
    /// <summary>
    /// 
    /// </summary>
    public class PhartDiagramExGraphListVmo : PhartDiagramVmo
    {
        /// <summary>
        /// 
        /// </summary>
        public PhartDiagramExGraphListVmo() { }
 
        /// <summary>
        /// 
        /// </summary>
        public PhartDiagramExGraphListVmo(PhartDiagramVmo rhs) : base(rhs)
        {
        
        }
 
        /// <summary>
        /// 
        /// </summary>
        public PhartDiagramExGraphListVmo(PhartDiagramVmo rhs, List<PhartGraphVmo> graphList) : base(rhs)
        {
            this.GraphList = graphList?.Select(x => new PhartGraphVmo(x)).ToList();
        }
 
        /// <summary>
        /// 
        /// </summary>
        public List<PhartGraphVmo> GraphList { get; set; }
 
    }
}