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

20 lines
439 B
C#

namespace LaaProduction.Services.Models
{
using System;
using System.Collections.Generic;
public class PalletPosition
{
public Int32 PositionNr { get; set; }
public String Description { get; set; }
public Int32 ItemsCount { get; set; }
public Int32 TotalItemsCount { get; set; }
public IEnumerable<SerialNr> Items { get; set; }
= Array.Empty<SerialNr>();
}
}