laatzen/LaaProductionWeb/LaaProductionWeb.Services/Models/SerialNr.cs
2023-05-11 09:31:14 +02:00

19 lines
410 B
C#

namespace LaaProductionWeb.Services.Models
{
public class SerialNr
{
public int Id { get; set; }
public int Nr { get; set; }
public int PositionNr { get; set; }
public int? PalletNr { get; set; }
public string CustomerNr { get; set; }
public bool IsScaned { get; set; }
public string BarcodeNr => this.CustomerNr ?? $"{this.Nr}";
}
}