19 lines
473 B
C#
19 lines
473 B
C#
namespace LaaProduction.Services.Models
|
|
{
|
|
public class SerialNr
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int Serial { get; set; }
|
|
|
|
public int PositionNr { get; set; }
|
|
|
|
public int? PalletNr { get; set; }
|
|
|
|
public string CustomerSerial { get; set; }
|
|
|
|
public bool IsScanned { get; set; }
|
|
|
|
public string BarcodeNr => !string.IsNullOrWhiteSpace(this.CustomerSerial) ? this.CustomerSerial : $"{this.Serial}";
|
|
}
|
|
} |