Files
Mapo-IOB-WIN/IOB-UT-NEXT/Config/Special/FanucDto.cs
T
Samuele Locatelli 1acfa67631 FANUC + OPC-UA
- update x spsotamento chaimate getOptPar in IobConfTree
- spostamento parametri FANUC verso device x memorie PzCounters
2025-04-07 11:29:56 +02:00

30 lines
733 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IOB_UT_NEXT.Config.Special
{
public class FanucDto
{
#region Public Properties
/// <summary>
/// Definizione Memoria x gestione contapezzi
/// </summary>
public string PzCountMem { get; set; } = "";
/// <summary>
/// Definizione Memoria x pezzi richiesti
/// </summary>
public string PzReqMem { get; set; } = "";
/// <summary>
/// Definizione Memoria x pezzi totali (NON ressettabile)
/// </summary>
public string PzTotMem { get; set; } = "";
#endregion Public Properties
}
}