laatzen/LaaProductionWeb/LaaProduction.Services/Models/PalletsBatchModel.cs
2023-06-19 15:43:55 +02:00

19 lines
454 B
C#

namespace LaaProduction.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>();
}
}