cb_prestige_qr/lib/features/home/domain/entities/recent_scan.dart
2026-04-27 15:38:26 +06:30

7 lines
136 B
Dart

class RecentScan {
const RecentScan({required this.title, required this.subtitle});
final String title;
final String subtitle;
}