19 lines
410 B
C#
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}";
|
|
}
|
|
} |