using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MagMan.Core.DTO
{
public class MaterialDTO
{
///
/// Primary Key Materiale, 0 se proviente da EgtBeamWall
///
public int MatId { get; set; } = 0;
///
/// Codice Materiale
///
public string MatCode { get; set; } = "";
///
/// Descrizione materiale
///
public string MatDesc { get; set; } = "";
///
/// Lenght/Lunghezza in mm
///
public decimal LMm { get; set; } = 0;
///
/// Width/Larghezza in mm
///
public decimal WMm { get; set; } = 0;
///
/// Thikness/Spessore in mm
///
public decimal HMm { get; set; } = 0;
}
}