Removed more not needed properties from api
This commit is contained in:
@ -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;
|
||||
|
@ -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; }
|
||||
|
@ -1,4 +1,3 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Adaptation.FileHandlers.MoveAllFiles.OpenInsight;
|
||||
|
Reference in New Issue
Block a user