adding distance as an optional field

This commit is contained in:
2023-04-29 20:29:52 +02:00
parent ff3fb43cb0
commit 38dd0eb244
2 changed files with 2 additions and 0 deletions

View File

@@ -3,4 +3,5 @@ export interface LocationEntity {
region: string; region: string;
lat: number; lat: number;
lon: number; lon: number;
distance?: number;
} }

View File

@@ -6,4 +6,5 @@ export interface WaypointsEntity {
description: string; description: string;
img: string; img: string;
locationName: string; locationName: string;
distance?: number;
} }