mobile_skt/lib/models/workbench.model.dart

9 lines
210 B
Dart
Raw Normal View History

2024-04-01 08:41:52 +08:00
class WorkBenchModel {
final String title;
final String icon;
2024-04-12 09:56:00 +08:00
final String? route;
final Function()? onTap;
2024-04-01 08:41:52 +08:00
WorkBenchModel(
2024-04-12 09:56:00 +08:00
{required this.title, required this.icon, this.route, this.onTap});
2024-04-01 08:41:52 +08:00
}