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,6 @@
export interface LocationEntity {
location: string;
region: string;
lat: number;
lon: number;
}