27 lines
722 B
C#
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; }
|
|
}
|
|
}
|