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