27 lines
696 B
C#
27 lines
696 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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;
|
|
}
|
|
}
|