19 lines
349 B
C#
19 lines
349 B
C#
using S7.Net;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IOB.WIN.FileExp
|
|
{
|
|
public class connParam
|
|
{
|
|
public string ipAdrr = "";
|
|
|
|
public CpuType tipoCpu = CpuType.S7300;
|
|
public short rack = 0;
|
|
public short slot = 0;
|
|
}
|
|
}
|