Mike Phares 2614782d58 HttpSelfHostConfigurationBaseAddress
OpenInsightApplicationProgrammingInterface
Infineon.EAF.Runtime 2.49.3
2023-08-02 12:12:54 -07:00

21 lines
501 B
C#

using System.Text.Json.Serialization;
namespace Adaptation.FileHandlers.MoveAllFiles.OpenInsight;
public class CleanInsp
{
[JsonPropertyName("keyId")]
public int KeyId { get; set; }
[JsonPropertyName("stage")]
public string Stage { get; set; }
[JsonPropertyName("cleans")]
public Cleans Cleans { get; set; }
[JsonPropertyName("inspection")]
public Inspection Inspection { get; set; }
[JsonPropertyName("surfScan")]
public SurfScan SurfScan { get; set; }
}