18 lines
419 B
C#
18 lines
419 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Adaptation.FileHandlers.MoveAllFiles.OpenInsight;
|
|
|
|
public class SurfscanRecipe
|
|
{
|
|
[JsonPropertyName("recipe")]
|
|
public string Recipe { get; set; }
|
|
|
|
[JsonPropertyName("defects")]
|
|
public int Defects { get; set; }
|
|
|
|
[JsonPropertyName("haze")]
|
|
public int Haze { get; set; }
|
|
|
|
[JsonPropertyName("sampleSize")]
|
|
public int SampleSize { get; set; }
|
|
} |