35 lines
798 B
C#
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
|
|
}
|
|
} |