12 lines
384 B
C#
12 lines
384 B
C#
namespace AVSCartonShipmentVerifier.ScanHistory;
|
|
|
|
public sealed class ScanHistoryEntry
|
|
{
|
|
public long Id { get; set; }
|
|
public string ModelNumber { get; set; } = string.Empty;
|
|
public string UniqueNumber { get; set; } = string.Empty;
|
|
public bool ExistsInSystem { get; set; }
|
|
public bool ShipmentMarked { get; set; }
|
|
public DateTime ProcessedAtUtc { get; set; }
|
|
}
|