laatzen/LaaProductionWeb/LaaProduction.Services/Models/PalletsBatchModel.cs
2024-07-17 13:13:41 +02:00

19 lines
458 B
C#

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