mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-11-27 18:04:56 +00:00
7 lines
146 B
Dart
7 lines
146 B
Dart
class Community {
|
|
final String name;
|
|
final List<Community>? children; // Sub-communities
|
|
|
|
Community({required this.name, this.children});
|
|
}
|