Files
magman/MagMan.Core/DTO/MaterialDTO.cs
T
2024-01-16 10:55:24 +01:00

46 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MagMan.Core.DTO
{
public class MaterialDTO
{
/// <summary>
/// Codice materiale (esterno)
/// </summary>
public int MatExtCode { get; set; } = 0;
/// <summary>
/// Descrizione materiale
/// </summary>
public string MatDesc { get; set; } = "";
#if false
/// <summary>
/// Data approvazione (se non approvato è nel futuro)
/// </summary>
public DateTime ApprovDate { get; set; } = DateTime.Now.AddYears(100);
/// <summary>
/// Utente approvazione amteriale
/// </summary>
public string ApprovUser { get; set; } = "";
#endif
/// <summary>
/// Lenght/Lunghezza in mm
/// </summary>
public decimal LMm { get; set; } = 0;
/// <summary>
/// Width/Larghezza in mm
/// </summary>
public decimal WMm { get; set; } = 0;
/// <summary>
/// Thikness/Spessore in mm
/// </summary>
public decimal TMm { get; set; } = 0;
}
}