Files
syncrow-web/lib/pages/spaces_management/model/connection_model.dart
hannathkadher 836c44fd95 updated api
2024-11-18 15:36:33 +04:00

13 lines
296 B
Dart

import 'package:syncrow_web/pages/spaces_management/model/space_model.dart';
class Connection {
final SpaceModel startSpace;
final SpaceModel endSpace;
final String direction;
Connection(
{required this.startSpace,
required this.endSpace,
required this.direction});
}