1acfa67631
- update x spsotamento chaimate getOptPar in IobConfTree - spostamento parametri FANUC verso device x memorie PzCounters
30 lines
733 B
C#
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
|
|
}
|
|
} |