21 lines
579 B
C#
21 lines
579 B
C#
namespace EgwCoreLib.Lux.Core.Generic
|
|
{
|
|
/// <summary>
|
|
/// Definizione di item raw x calcolo lavorazioni
|
|
/// </summary>
|
|
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;
|
|
}
|
|
}
|