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