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

13 lines
220 B
Dart

import 'recent_scan.dart';
class HomeContent {
const HomeContent({
required this.carouselAssets,
required this.recentScans,
});
final List<String> carouselAssets;
final List<RecentScan> recentScans;
}