Files
survive-app/lib/data/waypoint/model.dart
Oliwier Adamczyk 4804732340 initial commit
2025-10-05 10:07:06 +02:00

7 lines
140 B
Dart

class WaypointModel {
final String name;
final double x, y;
WaypointModel({required this.name, required this.x, required this.y});
}