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