From 55ba6b0f9ff2841c33196cb3bcfd41a4e5adba4d Mon Sep 17 00:00:00 2001 From: Alix JEUDI--LEMOINE Date: Tue, 3 Jun 2025 00:03:21 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Added=20POI=20interface=20to=20repr?= =?UTF-8?q?esent=20points=20of=20interest.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/model/POI.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/app/model/POI.ts diff --git a/src/app/model/POI.ts b/src/app/model/POI.ts new file mode 100644 index 0000000..2373907 --- /dev/null +++ b/src/app/model/POI.ts @@ -0,0 +1,11 @@ +export interface POI { + id: string; + location: number[]; + complete_address: string; + title: string; + files: string[]; + description: string; + user_id: null; + is_poi: boolean; + date?: string; +}