laatzen/LaaProductionWeb/LaaProduction.Services/Models/OrderIdentity.cs
2023-06-19 15:43:55 +02:00

14 lines
281 B
C#

namespace LaaProduction.Services.Models
{
public class OrderIdentity
{
public int OrderNr { get; set; }
public int PositionNr { get; set; }
public int SerialNr { get; set; }
public string CustomerSerialNr { get; set; }
}
}