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
///
/// Definizione Memoria x gestione contapezzi
///
public string PzCountMem { get; set; } = "";
///
/// Definizione Memoria x pezzi richiesti
///
public string PzReqMem { get; set; } = "";
///
/// Definizione Memoria x pezzi totali (NON ressettabile)
///
public string PzTotMem { get; set; } = "";
#endregion Public Properties
}
}