22 lines
563 B
C#
22 lines
563 B
C#
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Adaptation.FileHandlers.MoveAllFiles.OpenInsight;
|
|
|
|
public class Cleans
|
|
{
|
|
[JsonPropertyName("cleanRecipe")]
|
|
public object CleanRecipe { get; set; }
|
|
|
|
[JsonPropertyName("cleanSigReq")]
|
|
public bool CleanSigReq { get; set; }
|
|
|
|
[JsonPropertyName("cleanTools")]
|
|
public List<object> CleanTools { get; set; }
|
|
|
|
[JsonPropertyName("specs")]
|
|
public Spec Specs { get; set; }
|
|
|
|
[JsonPropertyName("operations")]
|
|
public List<object> Operations { get; set; }
|
|
} |