Adding entity for api

This commit is contained in:
2023-04-28 13:46:06 +02:00
parent 9c29285216
commit 1222172e1c
4 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
export interface WaypointsEntity {
id: number;
name: string;
lat: number;
lon: number;
description: string;
img: string;
locationName: string;
}