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

11 lines
150 B
Dart
Raw Normal View History

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