using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.Model
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class MonitorPointExSignalList:Model.MonitorPoint,ICloneable
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public MonitorPointExSignalList() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public MonitorPointExSignalList(Model.MonitorPoint rhs,IEnumerable<Model.Signal> signal_list):base(rhs)
|
{
|
this.SignalList = signal_list?.ToList();
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
public MonitorPointExSignalList(Model.MonitorPointExSignalList rhs) : base(rhs)
|
{
|
this.SignalList = rhs.SignalList;
|
}
|
|
/// <summary>
|
/// 信号列表
|
/// </summary>
|
public List<Model.Signal> SignalList { get; set; }
|
|
|
|
}
|
}
|