namespace EgwCoreLib.Lux.Core.Generic { /// /// Definizione di item raw x calcolo lavorazioni /// public class ItemRawDTO { public int ItemID { get; set; } = 0; #if false public string ClassCode { get; set; } = ""; public string ItemCode { get; set; } = ""; public double SizeW { get; set; } = 0; public double SizeL { get; set; } = 0; public double SizeH { get; set; } = 0; #endif public double Lenght { get; set; } = 0; public double Qty { get; set; } = 999; } }