12 lines
421 B
C#
12 lines
421 B
C#
namespace AVSCartonShipmentVerifier.ScanHistory;
|
|
|
|
public sealed class RejectedScanEntry
|
|
{
|
|
public long Id { get; set; }
|
|
public string RawInputValue { get; set; } = string.Empty;
|
|
public string ModelNumber { get; set; } = string.Empty;
|
|
public string UniqueNumber { get; set; } = string.Empty;
|
|
public string RejectionReason { get; set; } = string.Empty;
|
|
public DateTime ProcessedAtUtc { get; set; }
|
|
}
|