dreampad/lib/app/modules/home/models/explore_app_model.dart

12 lines
144 B
Dart
Raw Normal View History

2023-11-28 10:44:58 +08:00
class ExploreApp {
String? name;
String? icon;
String? grayIcon;
ExploreApp({
this.name,
this.icon,
this.grayIcon,
});
}