From 1147ee30accc76ecf3a6f4f9c26f73dba3f0dab3 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Wed, 26 Apr 2023 19:38:14 +0200 Subject: [PATCH] Aggiunta parametro x creazione PNG dio default a false --- NKC_SDK/Objects.cs | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/NKC_SDK/Objects.cs b/NKC_SDK/Objects.cs index 42015ff..873470d 100644 --- a/NKC_SDK/Objects.cs +++ b/NKC_SDK/Objects.cs @@ -84,7 +84,7 @@ namespace NKC_SDK public string EnvNum { get; set; } = ""; /// - /// Codice della macchina x cui si effettua richeista + /// Codice della macchina x cui si effettua richiesta /// [JsonConverter(typeof(StringEnumConverter))] public mType MachineType { get; set; } @@ -95,7 +95,7 @@ namespace NKC_SDK public int MaxTime { get; set; } /// - /// Indice di aprtenza (per carrelli, bins...) + /// Indice di partenza (per carrelli, bins...) /// public int NumIndexStart { get; set; } = 1; @@ -119,6 +119,13 @@ namespace NKC_SDK /// public int ProcType { get; set; } + + /// + /// Indica se sia richeisto di generare l'PNG per OGNI pezzo processato + /// default: false + /// + public bool CreatePng { get; set; } = false; + #endregion Public Properties }