using AVSCartonShipmentVerifier.DTOs; namespace AVSCartonShipmentVerifier.ViewModels; public sealed class VerificationDashboardViewModel { public IReadOnlyCollection RecentSuccessfulScans { get; init; } = []; public IReadOnlyCollection RecentRejectedScans { get; init; } = []; }