cb_prestige_qr/lib/features/home/domain/entities/recent_scan.dart
2026-04-09 13:17:03 +06:30

11 lines
150 B
Dart

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