13 lines
408 B
C#
13 lines
408 B
C#
namespace AVSCartonShipmentVerifier.DTOs;
|
|
|
|
public sealed class ScannedRecordDto
|
|
{
|
|
public string ModelNumber { get; init; } = string.Empty;
|
|
public string UniqueNumber { get; init; } = string.Empty;
|
|
public bool ExistsInSystem { get; init; }
|
|
public bool ShipmentMarked { get; init; }
|
|
public DateTime? MovedToWarehouseAtUtc { get; init; }
|
|
public DateTime ProcessedAtUtc { get; init; }
|
|
}
|
|
|