Files
quality_recticel/recticel_print_service/RecticelPrintService/PrintData.cs
2025-09-26 22:17:37 +03:00

49 lines
1.3 KiB
C#

using Newtonsoft.Json;
namespace RecticelPrintService
{
public class PrintData
{
[JsonProperty("order_id")]
public int OrderId { get; set; }
[JsonProperty("comanda_productie")]
public string ComandaProductie { get; set; }
[JsonProperty("customer_name")]
public string CustomerName { get; set; }
[JsonProperty("cantitate")]
public int Cantitate { get; set; }
[JsonProperty("com_achiz_client")]
public string ComAchizClient { get; set; }
[JsonProperty("nr_linie_com_client")]
public string NrLinieComClient { get; set; }
[JsonProperty("data_livrare")]
public string DataLivrare { get; set; }
[JsonProperty("dimensiune")]
public string Dimensiune { get; set; }
[JsonProperty("descr_com_prod")]
public string DescrComProd { get; set; }
[JsonProperty("customer_article_number")]
public string CustomerArticleNumber { get; set; }
[JsonProperty("cod_articol")]
public string CodArticol { get; set; }
[JsonProperty("sequential_number")]
public string SequentialNumber { get; set; }
[JsonProperty("current_label")]
public int CurrentLabel { get; set; }
[JsonProperty("total_labels")]
public int TotalLabels { get; set; }
}
}