Files
cms_thermo_active/Thermo.Active.Model/DTOModels/ThIO/DTOChannelsSetup.cs
T
Samuele E. Locatelli 89ee203461 test x output conf IO
2021-02-04 10:55:36 +01:00

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>();
}
}