class ExploreApp {
  String? name;
  String? icon;
  String? grayIcon;

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