Files
Mapo-IOB-WIN/IOB-UT-NEXT/Config/Special/MemBankDto.cs
T
Samuele Locatelli fff0036e5e FANUC:
- completo modifica comportamento INIT
- riorganizzazione aree memoria Fanuc/Mitsubishi
2025-02-28 08:38:18 +01:00

26 lines
709 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 memoria a banchi (es: Fanuc, Mitsubishi)
/// </summary>
public class MemBankDto
{
/// <summary>
/// Conf aree di memoria da gestire
/// </summary>
public Dictionary<string, MemAreaDto> AreaConf { get; set; } = new Dictionary<string, MemAreaDto>();
/// <summary>
/// Valori dei bit di memoria da gestire con trace ad ogni check x debug
/// </summary>
public string Mem2Trace { get; set; } = "";
}
}