19 lines
458 B
C#
19 lines
458 B
C#
namespace LaaProduction.Services.Models
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
public class PalletsBatchModel
|
|
{
|
|
public String Customer { get; set; }
|
|
|
|
public Int32 OrderNr { get; set; }
|
|
|
|
public Int32 ProductionOrderNr { get; set; }
|
|
|
|
public String AdditionalText { get; set; }
|
|
|
|
public IEnumerable<PalletPosition> Positions { get; set; }
|
|
= Array.Empty<PalletPosition>();
|
|
}
|
|
} |