using static EgwCoreLib.Lux.Core.Enums; namespace EgwCoreLib.Lux.Core.RestPayload { public class PartCalcDTO { /// /// Esito calcolo lavorabilità PART /// public PartVerificationResult CalcResult { get; set; } /// /// Etichetta Part associata /// public string Tag { get; set; } = ""; /// /// Tempo lavorazione in secondi /// public decimal Time { get; set; } = 0; } }