Loading web/src/infraestructure/entities/poi.ts 0 → 100644 +21 −0 Original line number Diff line number Diff line export interface PointOfInterest { idPoint?: number; idPlace: number; name: string; image: File | string; contentEN: string; contentES: string; directionsEN: string; directionsES: string; } export const EmptyPointOfInterest: PointOfInterest = { idPoint: 0, idPlace: 0, name: '', image: '', contentEN: '', contentES: '', directionsEN: '', directionsES: '' } No newline at end of file Loading
web/src/infraestructure/entities/poi.ts 0 → 100644 +21 −0 Original line number Diff line number Diff line export interface PointOfInterest { idPoint?: number; idPlace: number; name: string; image: File | string; contentEN: string; contentES: string; directionsEN: string; directionsES: string; } export const EmptyPointOfInterest: PointOfInterest = { idPoint: 0, idPlace: 0, name: '', image: '', contentEN: '', contentES: '', directionsEN: '', directionsES: '' } No newline at end of file