28 lines
663 B
C#
28 lines
663 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
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;
|
|
}
|
|
}
|