space canvas initial commit

This commit is contained in:
hannathkadher
2024-09-05 12:11:35 +04:00
parent 46689bde5f
commit 0c3b820be0
13 changed files with 649 additions and 20 deletions

View File

@ -0,0 +1,6 @@
class SpaceModel {
final String communityName;
final List<String> subSpaces;
SpaceModel({required this.communityName, required this.subSpaces});
}