33 lines
784 B
C#
33 lines
784 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Adaptation.FileHandlers.MoveAllFiles.OpenInsight;
|
|
|
|
public class FrontSide
|
|
{
|
|
[JsonPropertyName("lpd")]
|
|
public int? Lpd { get; set; }
|
|
|
|
[JsonPropertyName("scratches")]
|
|
public int? Scratches { get; set; }
|
|
|
|
[JsonPropertyName("scratchLen")]
|
|
public string ScratchLen { get; set; }
|
|
|
|
[JsonPropertyName("pits")]
|
|
public int? Pits { get; set; }
|
|
|
|
[JsonPropertyName("mounds")]
|
|
public int? Mounds { get; set; }
|
|
|
|
[JsonPropertyName("stackFaults")]
|
|
public int? StackFaults { get; set; }
|
|
|
|
[JsonPropertyName("spikes")]
|
|
public int? Spikes { get; set; }
|
|
|
|
[JsonPropertyName("spots")]
|
|
public int? Spots { get; set; }
|
|
|
|
[JsonPropertyName("blDefects")]
|
|
public int? BlDefects { get; set; }
|
|
} |