Files
mapo-core/IobConf.Core/CncConf.cs
T
Samuele Locatelli 310f304b7e Aggiunta preliminare oggetto IobConf
- testing gestione file conf YAML/JSON
- bozza acquisizione e salvataggio dati conf da IOB sul campo
2022-12-22 18:31:24 +01:00

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";
}
}