mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +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});
|
|
}
|