Files
syncrow-web/lib/pages/spaces_management/model/community_model.dart
hannathkadher fe3525d255 sidebar widget
2024-09-26 14:49:19 +04:00

7 lines
146 B
Dart

class Community {
final String name;
final List<Community>? children; // Sub-communities
Community({required this.name, this.children});
}