23 lines
547 B
C#
23 lines
547 B
C#
using static EgwCoreLib.Lux.Core.Enums;
|
|
|
|
namespace EgwCoreLib.Lux.Core.RestPayload
|
|
{
|
|
public class PartCalcDTO
|
|
{
|
|
/// <summary>
|
|
/// Esito calcolo lavorabilità PART
|
|
/// </summary>
|
|
public PartVerificationResult CalcResult { get; set; }
|
|
|
|
/// <summary>
|
|
/// Etichetta Part associata
|
|
/// </summary>
|
|
public string Tag { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// Tempo lavorazione in secondi
|
|
/// </summary>
|
|
public decimal Time { get; set; } = 0;
|
|
}
|
|
}
|