using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfMan.IOB.Core
{
public class CncConf
{
///
/// Init classe default
///
public CncConf()
{ }
///
/// Indirizzo Ip del CNC Controllato
///
public string IpAddr { get; set; } = "127.0.0.1";
///
/// Porta del CNC Controllato
///
public string Port { get; set; } = "0";
///
/// Timeout test PING
///
public int pingMsTimeout { get; set; } = 500;
///
/// TipoCPU (es: Siemens)
///
public string CpuType { get; set; } = "ND";
///
/// Rack (Siemens S7)
///
public short Rack { get; set; } = 0;
///
/// Slot (Siemens S7)
///
public short Slot { get; set; } = 0;
}
}