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

9 lines
206 B
Dart
Raw Permalink Normal View History

2026-04-09 06:47:03 +00:00
import 'recent_scan.dart';
class HomeContent {
2026-04-27 09:08:26 +00:00
const HomeContent({required this.carouselAssets, required this.recentScans});
2026-04-09 06:47:03 +00:00
final List<String> carouselAssets;
final List<RecentScan> recentScans;
}