Files
flutterApp/lib/features/devices/domain/repositories/path_repository.dart

6 lines
237 B
Dart

import '../../data/models/device_add_path_point_model.dart';
abstract class PathRepository {
// Generate path(打点生成路径规划)
Future<List<DeviceAddPathPointModel>> generatePath(List<DeviceAddPathPointModel> coordinates);
}