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;
|
2024-04-12 15:17:29 +08:00
|
|
|
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
|
|
|
}
|