19 lines
427 B
C#
19 lines
427 B
C#
namespace LaaProductionWeb.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 => this.CustomerSerial ?? $"{this.Serial}";
|
|
}
|
|
} |