58 lines
1.4 KiB
C#
58 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MagMan.Core.DTO
|
|
{
|
|
public class ItemDTO
|
|
{
|
|
/// <summary>
|
|
/// Ext ref for Material
|
|
/// </summary>
|
|
public int MatId { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// Key del RawItem di riferimento (se zero da verificare con quote)
|
|
/// </summary>
|
|
public int RawItemId { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// Check if is a Remnant
|
|
/// </summary>
|
|
public bool IsRemn { get; set; } = false;
|
|
|
|
/// <summary>
|
|
/// Location
|
|
/// </summary>
|
|
public string Location { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// Qty available on wharehouse
|
|
/// </summary>
|
|
public int QtyAvail { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// Item's Lenght
|
|
/// </summary>
|
|
public decimal LMm { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// Item's Width
|
|
/// </summary>
|
|
public decimal WMm { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// Item's Thikness
|
|
/// </summary>
|
|
public decimal HMm { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// Note (optional)
|
|
/// </summary>
|
|
public string Note { get; set; } = "";
|
|
}
|
|
}
|