AVS-Carton-Shipment-Verifier/ViewModels/VerificationDashboardViewMo...

15 lines
493 B
C#

using AVSCartonShipmentVerifier.DTOs;
namespace AVSCartonShipmentVerifier.ViewModels;
public sealed class VerificationDashboardViewModel
{
public IReadOnlyCollection<ScannedRecordDto> RecentSuccessfulScans { get; init; } = [];
public IReadOnlyCollection<RejectedScanRecordDto> RecentRejectedScans { get; init; } = [];
/// <summary>Cartons with moved_to_warehouse = 0; null when MySQL count could not be loaded.</summary>
public int? AvailableCartonsCount { get; init; }
}