mobile_skt/lib/models/workbench.model.dart

9 lines
210 B
Dart
Raw Normal View History

2024-10-16 09:48:17 +08:00
class WorkBenchModel {
final String title;
final String icon;
final String? route;
final Function()? onTap;
WorkBenchModel(
{required this.title, required this.icon, this.route, this.onTap});
}