mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-16 18:16:21 +00:00
12 lines
181 B
Dart
12 lines
181 B
Dart
import 'list_item_model.dart';
|
|
|
|
class MenuListModel {
|
|
final String? label;
|
|
final List<ListItemModel?>? listItems;
|
|
|
|
MenuListModel({
|
|
this.label,
|
|
this.listItems,
|
|
});
|
|
}
|