21 lines
503 B
C#
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}";
|
|
}
|
|
} |