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; +}