initial commit
This commit is contained in:
6
lib/data/waypoint/model.dart
Normal file
6
lib/data/waypoint/model.dart
Normal file
@@ -0,0 +1,6 @@
|
||||
class WaypointModel {
|
||||
final String name;
|
||||
final double x, y;
|
||||
|
||||
WaypointModel({required this.name, required this.x, required this.y});
|
||||
}
|
||||
3
lib/data/waypoint/repository.dart
Normal file
3
lib/data/waypoint/repository.dart
Normal file
@@ -0,0 +1,3 @@
|
||||
abstract class IWaypointRepository {}
|
||||
|
||||
class WaypointRepository implements IWaypointRepository {}
|
||||
Reference in New Issue
Block a user