* Introduced new WzRowMareli service to handle new client

This commit is contained in:
2025-09-08 21:19:17 +02:00
parent f45baa31a5
commit 89792d3d28
8 changed files with 201 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
namespace SytelineSaAppEfDataModel.Dtos;
public class WzRowMareliDto
{
public Guid ID { get; set; }
public Guid? FKHeader { get; set; }
public string Type { get; set; }
public int? PalletNumber { get; set; }
public string ItemNumber { get; set; }
public string EngineerNumber { get; set; }
public int? Quantity { get; set; }
public string OrderNumber { get; set; }
public string WzNumber { get; set; }
}