namespace EgwCoreLib.Lux.Core.Generic
{
///
/// Definizione richiesta di calcolo progetto per lavorazione
///
public class ProdCalcOdlReqDTO
{
#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; } = "";
///
/// Elenco item disponibili x produzione ragguppato x tipo
///
public Dictionary> ItemAvaiList { get; set; } = new Dictionary>();
#endregion Public Properties
}
}