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