Removed more not needed properties from api

This commit is contained in:
2023-08-03 13:53:02 -07:00
parent c5e3acc3e4
commit ae47e7dbd5
4 changed files with 60 additions and 32 deletions

View File

@ -6,7 +6,6 @@ using System.Globalization;
using System.IO;
using System.Net.Http;
using System.Text.Json;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace Adaptation.FileHandlers.MoveAllFiles.ApiController;

View File

@ -23,28 +23,28 @@ public class QaMetTest
public string RecipePattern { get; set; }
[JsonPropertyName("min")]
public double Min { get; set; }
public object Min { get; set; }
[JsonPropertyName("max")]
public double Max { get; set; }
public object Max { get; set; }
[JsonPropertyName("phaseMin")]
public double? PhaseMin { get; set; }
public object PhaseMin { get; set; }
[JsonPropertyName("slots")]
public object Slots { get; set; }
[JsonPropertyName("wfrQty")]
public int WfrQty { get; set; }
public int? WfrQty { get; set; }
[JsonPropertyName("reactSched")]
public bool ReactSched { get; set; }
public bool? ReactSched { get; set; }
[JsonPropertyName("interval")]
public int Interval { get; set; }
public int? Interval { get; set; }
[JsonPropertyName("start")]
public int Start { get; set; }
public int? Start { get; set; }
[JsonPropertyName("sequence")]
public string Sequence { get; set; }

View File

@ -1,4 +1,3 @@
using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace Adaptation.FileHandlers.MoveAllFiles.OpenInsight;