12 lines
332 B
C#
12 lines
332 B
C#
using AVSCartonShipmentVerifier.DTOs;
|
|
|
|
namespace AVSCartonShipmentVerifier.ViewModels;
|
|
|
|
public sealed class VerificationDashboardViewModel
|
|
{
|
|
public IReadOnlyCollection<ScannedRecordDto> RecentSuccessfulScans { get; init; } = [];
|
|
|
|
public IReadOnlyCollection<RejectedScanRecordDto> RecentRejectedScans { get; init; } = [];
|
|
}
|
|
|