21 lines
514 B
C#
21 lines
514 B
C#
using IOB_UT_NEXT.Config.Mem;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IOB_UT_NEXT.Config.Special
|
|
{
|
|
/// <summary>
|
|
/// Configurazione specifica memoria per FANUC
|
|
/// </summary>
|
|
public class FanucDto
|
|
{
|
|
/// <summary>
|
|
/// Conf aree di memoria da gestire
|
|
/// </summary>
|
|
public Dictionary<string, MemAreaDto> MemConf { get; set; } = new Dictionary<string, MemAreaDto>();
|
|
}
|
|
}
|