Commit b9195b52 authored by Lorenzo Trujillo Rojas's avatar Lorenzo Trujillo Rojas
Browse files

Se creo el modelo de api que repesenta un point

parent b7c30838
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
export interface ActivityModel {
  idTown: number;
  idPlace: number;
  available: string;
  description: string;
  coords: string;
  imageName: string;
  name: string;
  openAt: number;
  closeAt: number;
  startDate: Date | null;
  endDate: Date | null;
}