Files
2026-01-26 10:40:23 +01:00

37 lines
1003 B
C#

namespace EgwCoreLib.Lux.Core.Generic
{
/// <summary>
/// Definizione richiesta di calcolo progetto per lavorazione
/// </summary>
public class ProdCalcOdlReqDTO
{
#region Public Properties
/// <summary>
/// Nome Progetto (OdlTag)
/// </summary>
public string ProdName { get; set; } = "";
/// <summary>
/// Batch ID di appartenenza
/// </summary>
public int ProdBatchID { get; set; } = 0;
/// <summary>
/// Idx ODL
/// </summary>
public int ProdODLID { get; set; }
/// <summary>
/// Nome Macchina
/// </summary>
public string MachineName { get; set; } = "";
/// <summary>
/// Elenco item disponibili x produzione ragguppato x tipo
/// </summary>
public Dictionary<string,List<ItemRawDTO>> ItemAvaiList { get; set; } = new Dictionary<string, List<ItemRawDTO>>();
#endregion Public Properties
}
}