laatzen/LaaProductionWeb/LaaProduction.Services/Models/SerialNr.cs
2024-07-17 13:13:41 +02:00

21 lines
503 B
C#

namespace LaaProduction.Services.Models
{
using System;
public class SerialNr
{
public Int32 Id { get; set; }
public Int32 Serial { get; set; }
public Int32 PositionNr { get; set; }
public Int32? PalletNr { get; set; }
public String CustomerSerial { get; set; }
public Boolean IsScanned { get; set; }
public String BarcodeNr => !String.IsNullOrWhiteSpace(this.CustomerSerial) ? this.CustomerSerial : $"{this.Serial}";
}
}