mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 15:17:31 +00:00
sidebar widget
This commit is contained in:
6
lib/pages/spaces_management/model/community_model.dart
Normal file
6
lib/pages/spaces_management/model/community_model.dart
Normal file
@ -0,0 +1,6 @@
|
||||
class Community {
|
||||
final String name;
|
||||
final List<Community>? children; // Sub-communities
|
||||
|
||||
Community({required this.name, this.children});
|
||||
}
|
Reference in New Issue
Block a user