basic models

This commit is contained in:
2026-06-09 11:02:06 +02:00
parent 5f71330a4b
commit 3b130fb59d
3 changed files with 48 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
class LatLng {
final double lat;
final double lng;
LatLng(this.lat, this.lng);
LatLng.empty() : lat = 0, lng = 0;
}