dreampad/lib/app/modules/home/models/explore_app_model.dart
2023-11-28 10:45:09 +08:00

12 lines
144 B
Dart

class ExploreApp {
String? name;
String? icon;
String? grayIcon;
ExploreApp({
this.name,
this.icon,
this.grayIcon,
});
}