310f304b7e
- testing gestione file conf YAML/JSON - bozza acquisizione e salvataggio dati conf da IOB sul campo
33 lines
711 B
C#
33 lines
711 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IobConf.Core
|
|
{
|
|
public class CncConf
|
|
{
|
|
/// <summary>
|
|
/// Init classe default
|
|
/// </summary>
|
|
public CncConf()
|
|
{ }
|
|
|
|
/// <summary>
|
|
/// Indirizzo Ip del CNC Controllato
|
|
/// </summary>
|
|
public string IpAddr { get; set; } = "127.0.0.1";
|
|
|
|
/// <summary>
|
|
/// Porta del CNC Controllato
|
|
/// </summary>
|
|
public string Port { get; set; } = "0";
|
|
|
|
/// <summary>
|
|
/// TipoCPU (es: Siemens)
|
|
/// </summary>
|
|
public string cpuType { get; set; } = "ND";
|
|
}
|
|
}
|