Mike Phares 2614782d58 HttpSelfHostConfigurationBaseAddress
OpenInsightApplicationProgrammingInterface
Infineon.EAF.Runtime 2.49.3
2023-08-02 12:12:54 -07:00

18 lines
428 B
C#

using System.Text.Json.Serialization;
namespace Adaptation.FileHandlers.MoveAllFiles.OpenInsight;
public class BackSide
{
[JsonPropertyName("scratches")]
public int? Scratches { get; set; }
[JsonPropertyName("scratchLen")]
public int? ScratchLen { get; set; }
[JsonPropertyName("nodules")]
public object Nodules { get; set; }
[JsonPropertyName("spikes")]
public object Spikes { get; set; }
}