using AVSCartonShipmentVerifier.DTOs; namespace AVSCartonShipmentVerifier.Services; public interface IScanHistoryStore { Task AddAsync(ScannedRecordDto record, CancellationToken cancellationToken = default); Task> GetLastFiveAsync(CancellationToken cancellationToken = default); }