mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
7 lines
154 B
Dart
7 lines
154 B
Dart
class SpaceModel {
|
|
final String communityName;
|
|
final List<String> subSpaces;
|
|
|
|
SpaceModel({required this.communityName, required this.subSpaces});
|
|
}
|