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