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

20 lines
436 B
C#

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