Commit 05e104ef authored by Lorenzo Trujillo Rojas's avatar Lorenzo Trujillo Rojas
Browse files

Se creo el modelo de api que representa un place

parent b9195b52
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
export interface ActivityPlaceModel {
  idPoint: number;
  idPlace: number;
  name: string;
  imageName: string;
  content: string;
  directions: string;
}