cb_prestige_qr/lib/features/home/domain/entities/recent_scan.dart

7 lines
136 B
Dart
Raw Permalink Normal View History

2026-04-09 06:47:03 +00:00
class RecentScan {
2026-04-27 09:08:26 +00:00
const RecentScan({required this.title, required this.subtitle});
2026-04-09 06:47:03 +00:00
final String title;
final String subtitle;
}