namespace MagMan.Core.DTO
{
//
// This is here so CodeMaid doesn't reorganize this document
//
public class ResourceExpDTO
{
///
/// ID risorsa (DB) / CLOUD
///
public int ResourceCloudId { get; set; }
///
/// Riferimento richiesta parent
///
public int RequestId { get; set; } = 0;
///
/// Ext ref for Material (DB) / CLOUD
///
public int MatCloudId { get; set; } = 0;
///
/// Ext ref for Material (DB) / CLOUD
///
public int RawItemCloudId { get; set; } = 0;
///
/// Primary Key RawItem (DB) / istanza locale
///
public int RawItemLocalId { get; set; } = 0;
///
/// Qty, se > 0 rappresenta un IMPEGNO di qualsiasi tipo, se < 0 è un CONSUMO
///
public int Qty { get; set; } = 0;
///
/// Check if is a Remnant
///
public bool IsRemn { get; set; } = false;
///
/// Item's Height (Thikness/Spessore) in mm
///
public decimal HMm { get; set; } = 0;
///
/// Item's Lenght
///
public decimal LMm { get; set; } = 0;
///
/// Item's Width
///
public decimal WMm { get; set; } = 0;
///
/// Note (optional)
///
public string Note { get; set; } = "";
///
/// Data richiesta
///
public DateTime DtRequest { get; set; }
///
/// record richiesto (me lo aspetto sempre a false se viene inviato/registrato...)
///
public bool IsDeleted { get; set; } = false;
}
}