class ScannedQr {
const ScannedQr({required this.rawValue, required this.scannedAt});
final String rawValue;
final DateTime scannedAt;
}