Files
2025-07-01 17:53:14 +02:00

27 lines
722 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IOB_UT_NEXT.Config.Special
{
/// <summary>
/// Configurazione speciale comportamento IOB
/// </summary>
public class ActionDto
{
/// <summary>
/// Configurazione speciale azioni in fase di setup
/// </summary>
public MachineSetupConf SetupConf { get; set; }
/// <summary>
/// Configurazione di un dizionario
/// chiave = action ricevuta
/// valore = elenco di step da eseguire in sequenza
/// </summary>
public Dictionary<string, List<StepActionDto>> StepActionList { get; set; }
}
}