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; }
|
}
|
}
|