Commit fe2b9d6b authored by Omar Luna Hernández's avatar Omar Luna Hernández
Browse files

Se crea la entidad que guarda los valores de un punto de interes

parent 56ed6b1c
Loading
Loading
Loading
Loading
+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