qin
2025-03-06 06eff2094e17b8ed3452e44a6d77b729a7621919
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
using System.Collections.Generic;
using System.Linq;
 
namespace IBox.WinFrmUI
{
    /// <summary>
    /// 
    /// </summary>
    public class MonitorPoint_Signal_SignalType : MonitorPoint
    {
        /// <summary>
        /// 
        /// </summary>
        public MonitorPoint_Signal_SignalType() { }
 
        /// <summary>
        /// 
        /// </summary>
        public MonitorPoint_Signal_SignalType(MonitorPoint rhs, List<Signal_SignalType> signalList) : base(rhs)
        {
            this.SignalList = signalList?.ToList();
        }
 
        /// <summary>
        /// 
        /// </summary>
        public MonitorPoint_Signal_SignalType(MonitorPoint_Signal_SignalType rhs) : base(rhs)
        {
            this.SignalList = rhs.SignalList?.ToList();
        }
 
 
        /// <summary>
        /// 信号列表
        /// </summary>
        public List<Signal_SignalType> SignalList { get; set; }
    }
}