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

9 lines
206 B
Dart

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