Files
Mapo-IOB-WIN/IOB-UT-NEXT/Config/Special/FanucDto.cs
T
Samuele Locatelli 8ecfe196ed update FANUC!
2025-02-25 18:27:48 +01:00

35 lines
798 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>
/// Dimensione area memoria G
/// </summary>
public int SizeAreaG { get; set; } = 0;
/// <summary>
/// Dimensione area memoria R
/// </summary>
public int SizeAreaR { get; set; } = 0;
/// <summary>
/// Dimensione area memoria X
/// </summary>
public int SizeAreaX { get; set; } = 0;
/// <summary>
/// Dimensione area memoria Y
/// </summary>
public int SizeAreaY { get; set; } = 0;
#endregion Public Properties
}
}