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