20 lines
436 B
C#
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>();
|
|
}
|
|
}
|