12 lines
270 B
C#
12 lines
270 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Adaptation.FileHandlers.MoveAllFiles.OpenInsight;
|
|
|
|
public class EpiPart
|
|
{
|
|
[JsonPropertyName("keyID")]
|
|
public int KeyID { get; set; }
|
|
|
|
[JsonPropertyName("waferSize")]
|
|
public string WaferSize { get; set; }
|
|
} |