namespace EgwCoreLib.Lux.Core.Generic
{
///
/// Definizione richiesta di creazione progetto per gestione successiva
///
public class ProdOdlReqDTO
{
#region Public Properties
///
/// Nome Progetto (OdlTag)
///
public string ProdName { get; set; } = "";
///
/// Batch ID di appartenenza
///
public int ProdBatchID { get; set; } = 0;
///
/// Idx ODL
///
public int ProdODLID { get; set; }
///
/// Nome Macchina
///
public string MachineName { get; set; } = "";
///
/// Dizionario Annidiato
/// - Ordini
/// - Righe ordine
/// - Lista TagList
///
public Dictionary>> OrderTagDict { get; set; } = new Dictionary>>();
#endregion Public Properties
}
}