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 }