namespace LaaProduction.Services.Models { using System; using System.Collections.Generic; public class PalletsBatchModel { public String Customer { get; set; } public Int32 OrderNr { get; set; } public Int32 ProductionOrderNr { get; set; } public String AdditionalText { get; set; } public IEnumerable Positions { get; set; } = Array.Empty(); } }