21 lines
501 B
C#
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; }
|
|
} |