mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-11-27 20:14:55 +00:00
fixed delete
This commit is contained in:
@ -3,7 +3,7 @@ import 'package:syncrow_web/pages/spaces_management/model/community_model.dart';
|
||||
import 'package:syncrow_web/pages/spaces_management/model/connection_model.dart';
|
||||
import 'package:syncrow_web/pages/spaces_management/model/selected_product_model.dart';
|
||||
|
||||
enum SpaceStatus { newSpace, modified, unchanged }
|
||||
enum SpaceStatus { newSpace, modified, unchanged, deleted }
|
||||
|
||||
class SpaceModel {
|
||||
String? uuid;
|
||||
@ -106,17 +106,4 @@ class SpaceModel {
|
||||
outgoingConnections.add(connection);
|
||||
}
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return '''
|
||||
SpaceModel(
|
||||
uuid: $uuid,
|
||||
name: $name,
|
||||
icon: $icon,
|
||||
isPrivate: $isPrivate,
|
||||
position: $position,
|
||||
selectedProducts: $selectedProducts
|
||||
)
|
||||
''';
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user