Files

49 lines
1.4 KiB
C#

// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace EgwCoreLib.Lux.Core.RestPayload
{
/// <summary>
/// Dati di dettaglio per Tempi / Costi di uno step (
/// NON associata a tabella ma da gestire serializzata
/// </summary>
public class StepDTO
{
/// <summary>
/// Nome/Descrizione
/// </summary>
public string Name { get; set; } = string.Empty;
/// <summary>
/// Indice ordinale del record
/// </summary>
public int Index { get; set; } = 0;
/// <summary>
/// Tempo stimato netto per unità di prodotto (LeadTime), sommabile
/// </summary>
public decimal WorkLeadTime { get; set; } = 0;
/// <summary>
/// Tempo Attraversamento complessivo per unità di prodotto (FlowTime), sommabile
/// </summary>
public decimal WorkFlowTime { get; set; } = 0;
/// <summary>
/// Costo delle lavorazioni dato ciclo e costing associati
/// </summary>
public decimal WorkCost { get; set; } = 0;
/// <summary>
/// Prezzo delle lavorazioni dato ciclo e costing associati
/// </summary>
public decimal WorkPrice { get; set; } = 0;
/// <summary>
/// Note (opzionali)
/// </summary>
public string Note { get; set; } = string.Empty;
}
}