Files
Mapo-IOB-WIN/IOB-UT-NEXT/Config/Special/MemoryDto.cs
T
2025-02-25 12:53:56 +01:00

26 lines
713 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 MemoryDto
{
/// <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; } = "";
}
}