51 lines
1.2 KiB
C#
51 lines
1.2 KiB
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Adaptation.FileHandlers.MoveAllFiles.OpenInsight;
|
|
|
|
public class QaMetTest
|
|
{
|
|
[JsonPropertyName("test")]
|
|
public string Test { get; set; }
|
|
|
|
[JsonPropertyName("property")]
|
|
public string Property { get; set; }
|
|
|
|
[JsonPropertyName("propertyDesc")]
|
|
public string PropertyDesc { get; set; }
|
|
|
|
[JsonPropertyName("toolClass")]
|
|
public string ToolClass { get; set; }
|
|
|
|
[JsonPropertyName("recipe")]
|
|
public string Recipe { get; set; }
|
|
|
|
[JsonPropertyName("recipePattern")]
|
|
public string RecipePattern { get; set; }
|
|
|
|
[JsonPropertyName("min")]
|
|
public double Min { get; set; }
|
|
|
|
[JsonPropertyName("max")]
|
|
public double Max { get; set; }
|
|
|
|
[JsonPropertyName("phaseMin")]
|
|
public double? PhaseMin { get; set; }
|
|
|
|
[JsonPropertyName("slots")]
|
|
public object Slots { get; set; }
|
|
|
|
[JsonPropertyName("wfrQty")]
|
|
public int WfrQty { get; set; }
|
|
|
|
[JsonPropertyName("reactSched")]
|
|
public bool ReactSched { get; set; }
|
|
|
|
[JsonPropertyName("interval")]
|
|
public int Interval { get; set; }
|
|
|
|
[JsonPropertyName("start")]
|
|
public int Start { get; set; }
|
|
|
|
[JsonPropertyName("sequence")]
|
|
public string Sequence { get; set; }
|
|
} |