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