Files
laatzen/LaaProductionWeb/LaaProduction.Services/Models/PalletPosition.cs
T

20 lines
433 B
C#

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