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