laatzen/LaaProductionWeb/LaaProductionWeb.Services/Models/PalletsBatchModel.cs
2023-05-11 09:31:14 +02:00

19 lines
457 B
C#

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<PalletPosition> Positions { get; set; }
= Array.Empty<PalletPosition>();
}
}