Files
IntegrySmartIndustry/Integry Smart Gateway/Core/RestConsumer/Model/InsertUdcRowRequest.cs

23 lines
998 B
C#

using System;
using EllipticCurve.Utils;
using Newtonsoft.Json;
namespace Integry_Smart_Gateway.Core.RestConsumer.Model;
public class InsertUdcRowRequest
{
[JsonProperty("codMart")] public string CodMart { get; set; }
[JsonProperty("descrizione")] public string? Descrizione { get; set; }
[JsonProperty("barcode")] public string? Barcode { get; set; }
[JsonProperty("qtaTot")] public float QtaTot { get; set; }
[JsonProperty("qtaCnf")] public float QtaCnf { get; set; }
[JsonProperty("numCnf")] public int NumCnf { get; set; }
[JsonProperty("partitaMag")] public string? PartitaMag { get; set; }
[JsonProperty("dataScad")] public DateTime? DataScad { get; set; }
[JsonProperty("codJcom")] public string CodJcom { get; set; }
[JsonProperty("gestioneRif")] public string GestioneRif { get; set; }
[JsonProperty("dataOrd")] public DateTime? DataOrd { get; set; }
[JsonProperty("numOrd")] public int? NumOrd { get; set; }
[JsonProperty("rigaOrd")] public int? RigaOrd { get; set; }
}