17 lines
483 B
C#
17 lines
483 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Thermo.Active.Model.DTOModels.ThIO
|
|
{
|
|
public class DTOChannelsSetup
|
|
{
|
|
public List<string> DI { get; set; } = new List<string>();
|
|
public List<string> DO { get; set; } = new List<string>();
|
|
public List<string> AI { get; set; } = new List<string>();
|
|
public List<string> AO { get; set; } = new List<string>();
|
|
}
|
|
}
|