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

13 lines
220 B
Dart
Raw Normal View History

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