using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
///
///
public class DemoMonitorPointExSignalListDto:DemoMonitorPointDto
{
///
///
///
public DemoMonitorPointExSignalListDto() { }
///
///
///
public DemoMonitorPointExSignalListDto(Model.MonitorPoint_Signal_SignalType rhs) : base(rhs)
{
this.SignalList = rhs.SignalList?.Select(x => new DemoSignalDto(x)).ToList();
}
///
///
///
public List SignalList { get; set; }
}
}